Vehicle cost report
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user