10 lines
277 B
C#
10 lines
277 B
C#
namespace MyOffice.Services.Account.Domain;
|
|
|
|
public class AccountEdit
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
public string CurrencyId { get; set; } = null!;
|
|
public Guid? CategoryId { get; set; }
|
|
public Guid? UserId { get; set; }
|
|
public string? Type { get; set; }
|
|
} |