namespace MyOffice.Services.Account.Domain; using MyOffice.Data.Models.Currencies; using System; using Data.Models.Accounts; public class AccountDto { public Guid Id { get; set; } public string CurrencyGlobalId { get; set; } = null!; public CurrencyGlobal? CurrencyGlobal { get; set; } public Guid CurrencyId { get; set; } public Currency? Currency { get; set; } public Guid UserId { get; set; } public UserDto? User { get; set; } public Guid OwnerId { get; set; } public UserDto? Owner { get; set; } public string Name { get; set; } = null!; public bool HasMotions { get; set; } public string Type { get; set; } = null!; public List? AccessRights { get; set; } public List? Categories { get; set; } public Guid CurrentUserId { get; set; } public AccountAccess? AccountAccess { get; set; } }