14 lines
393 B
C#
14 lines
393 B
C#
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; }
|
|
}
|
|
|
|
}
|