12345678910111213141516171819202122232425262728293031 |
- 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; }
- /// <summary>
- /// Gets or sets the fule product name this transaction consumed, like #93, #95, #DIESEL and etc.
- /// </summary>
- 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; }
- }
- }
|