namespace MyOffice.Services.Account.Domain; using Core.Attributes; using Data.Models.Accounts; [Link(typeof(AccountAccessInvite))] public class AccountAccessInviteDto { public string Id { get; set; } = null!; public string Account { get; set; } = null!; public bool IsAllowWrite { get; set; } }