StationFee.cs 541 B

123456789101112131415161718192021222324252627
  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. /// 電樁顯示用費率
  12. /// </summary>
  13. public string FeeName { set; get; }
  14. /// <summary>
  15. /// 停車費
  16. /// </summary>
  17. public decimal Fee { set; get; }
  18. /// <summary>
  19. /// 幣別
  20. /// </summary>
  21. public string Currency { set; get; }
  22. }
  23. }