Files
myoffice/MyOffice.Services/Account/Domain/AccountCategoryDto.cs
T
2023-07-28 21:18:18 +03:00

9 lines
229 B
C#

namespace MyOffice.Services.Account.Domain;
public class AccountCategoryDto
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public string Name { get; set; } = null!;
public bool AllowDelete { get; set; }
}