123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.WSServer.Dto
- {
- public class StationFee
- {
- /// <summary>
- /// 電樁顯示用費率
- /// </summary>
- public string FeeName { set; get; }
- /// <summary>
- /// 停車費
- /// </summary>
- public decimal Fee { set; get; }
- /// <summary>
- /// 幣別
- /// </summary>
- public string Currency { set; get; }
- }
- }
|