This commit is contained in:
2023-08-03 08:58:53 +03:00
parent c82f8e3537
commit ad31d3ffce
30 changed files with 697 additions and 24 deletions
+11 -1
View File
@@ -25,7 +25,7 @@ public class AccountDetailed
public decimal Rest => TotalPlus - TotalMinus;
}
public struct AccountSimple
public class AccountSimple
{
public Guid Id { get; set; }
public string Name { get; set; }
@@ -38,3 +38,13 @@ public struct AccountSimple
public decimal? TotalMinus { get; set; }
public decimal? Balance { get; set; }
}
public class MotionTotalSimple
{
public Guid? Id { get; set; }
public string Name { get; set; }
public string CurrencyId { get; set; } = null!;
public string CurrencyName { get; set; } = null!;
public decimal CurrencyRate { get; set; }
public decimal Amount { get; set; }
}