fix
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user