using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Fuel.Infrastructure.Payment.Models { public class FuelOrderDetailModel { public int Id { get; set; } public int PumpNumber { get; set; } public int NozzleNumber { get; set; } /// /// Gets or sets the fule product name this transaction consumed, like #93, #95, #DIESEL and etc. /// public string FuelProductName { get; set; } public string FuelProductId { get; set; } public decimal Qualtity { get; set; } public decimal Price { get; set; } public decimal Amount { get; set; } public string Category { get; set; } } }