12 lines
287 B
C#
12 lines
287 B
C#
namespace MyOffice.Services.Account.Domain
|
|
{
|
|
public class AccountMotionAdd
|
|
{
|
|
public DateTime Date { get; set; }
|
|
public string Motion { get; set; } = null!;
|
|
public string? Description { get; set; };
|
|
public decimal Plus { get; set; }
|
|
public decimal Minus { get; set; }
|
|
}
|
|
}
|