Files
myoffice/MyOffice.Services/Account/Domain/AccountAccountCategoryDto.cs
T
2023-07-25 22:10:03 +03:00

7 lines
188 B
C#

namespace MyOffice.Services.Account.Domain;
public class AccountAccountCategoryDto
{
public Guid CategoryId { get; set; }
public AccountCategoryDto? Category { get; set; } = null!;
}