FuelOrderDetailModel.cs 783 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Fuel.Infrastructure.Payment.Models
  7. {
  8. public class FuelOrderDetailModel
  9. {
  10. public int Id { get; set; }
  11. public int PumpNumber { get; set; }
  12. public int NozzleNumber { get; set; }
  13. /// <summary>
  14. /// Gets or sets the fule product name this transaction consumed, like #93, #95, #DIESEL and etc.
  15. /// </summary>
  16. public string FuelProductName { get; set; }
  17. public string FuelProductId { get; set; }
  18. public decimal Qualtity { get; set; }
  19. public decimal Price { get; set; }
  20. public decimal Amount { get; set; }
  21. public string Category { get; set; }
  22. }
  23. }