Files
myoffice/MyOffice.Web/Models/Account/AccountAccessInviteViewModel.cs
T
2023-07-29 16:25:16 +03:00

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; }
}