This commit is contained in:
mmrbnjd
2024-07-28 15:34:46 +03:30
parent 888b63dcd4
commit 5665b91aa1
7 changed files with 187 additions and 45 deletions

View File

@@ -11,8 +11,8 @@ namespace Shared.DTOs
public int ID { get; set; }
public int PermissionID { get; set; }
public string PermissionTitle { get; set; }
public int CreditAmount { get; set; }
public decimal APrice { get; set; }
public int CreditAmount { get; set; }
public decimal APrice { get; set; }
public decimal TPrice { get { return APrice * CreditAmount; } }
}
}