12345678910111213141516171819202122232425262728293031323334353637 |
- 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>
- /// 收費方式 1: 以度計費 2:以小時計費
- /// </summary>
- public int BillingMethod { set; get; }
- /// <summary>
- /// 電樁顯示用費率
- /// </summary>
- public string FeeName { set; get; }
- /// <summary>
- /// 停車費
- /// </summary>
- public decimal ParkingFee { set; get; }
- /// <summary>
- /// 幣別
- /// </summary>
- public string Currency { set; get; }
- /// <summary>
- /// 充電費率 以小時計費
- /// </summary>
- public decimal ChargingFeebyHour { set; get; }
- }
- }
|