16 lines
303 B
C#
16 lines
303 B
C#
using MileageTraker.Web.Attributes;
|
|
|
|
namespace MileageTraker.Web.ViewModels.Vehicle
|
|
{
|
|
public class VehicleCostItem
|
|
{
|
|
public string VehicleId { get; set; }
|
|
|
|
public string TagNumber { get; set; }
|
|
|
|
public string CostType { get; set; }
|
|
|
|
[Currency]
|
|
public decimal TotalPrice { get; set; }
|
|
}
|
|
} |