7 lines
188 B
C#
7 lines
188 B
C#
namespace MyOffice.Services.Account.Domain;
|
|
|
|
public class AccountAccountCategoryDto
|
|
{
|
|
public Guid CategoryId { get; set; }
|
|
public AccountCategoryDto? Category { get; set; } = null!;
|
|
} |