13 lines
340 B
C#
13 lines
340 B
C#
namespace MyOffice.Web.Models.Account;
|
|
|
|
using Core.Attributes;
|
|
using Services.Account.Domain;
|
|
|
|
[LinkFrom(typeof(AccountAccessInviteDto))]
|
|
[LinkWith(typeof(AccountViewModelProfile))]
|
|
public class AccountAccessInviteViewModel
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? Account { get; set; }
|
|
public bool? AllowWrite { get; set; }
|
|
} |