ChargingPrice.cs 669 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EVCB_OCPP.WSServer.Dto
  7. {
  8. public class ChargingPrice
  9. {
  10. public string StartTime { set; get; }
  11. public string EndTime { set; get; }
  12. public decimal Fee { set; get; }
  13. }
  14. public class ChargingBill
  15. {
  16. public string StartTime { set; get; }
  17. public string EndTime { set; get; }
  18. public decimal Total { set; get; }
  19. public decimal PeriodEnergy { set; get; }
  20. /// <summary>
  21. /// 費率
  22. /// </summary>
  23. public decimal Fee { set; get; }
  24. }
  25. }