namespace MyOffice.Services.Account.Domain { public class AccountMotionAdd { public DateTime Date { get; set; } public string Motion { get; set; } = null!; public string Description { get; set; } = null!; public decimal Plus { get; set; } public decimal Minus { get; set; } } }