StationFee.cs 842 B

12345678910111213141516171819202122232425262728293031323334353637
  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 StationFee
  9. {
  10. /// <summary>
  11. /// 收費方式 1: 以度計費 2:以小時計費
  12. /// </summary>
  13. public int BillingMethod { set; get; }
  14. /// <summary>
  15. /// 電樁顯示用費率
  16. /// </summary>
  17. public string FeeName { set; get; }
  18. /// <summary>
  19. /// 停車費
  20. /// </summary>
  21. public decimal ParkingFee { set; get; }
  22. /// <summary>
  23. /// 幣別
  24. /// </summary>
  25. public string Currency { set; get; }
  26. /// <summary>
  27. /// 充電費率 以小時計費
  28. /// </summary>
  29. public decimal ChargingFeebyHour { set; get; }
  30. }
  31. }