9 lines
229 B
C#
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; }
|
|
} |