namespace Sockeye.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; } } }