This commit is contained in:
2022-06-24 23:56:43 +00:00
parent 96f47de2e5
commit 34931a6ca7
7 changed files with 96 additions and 36 deletions

View File

@@ -0,0 +1,13 @@
namespace AyaNova.Models
{
//Used by QBI for part and service /travel rate lists for caching and mapping
public class NameIdActiveChargeCostItem
{
public long Id { get; set; }
public string Name { get; set; }
public bool Active { get; set; }
public decimal Cost { get; set; }
public decimal Charge { get; set; }
}
}