using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.WSServer.Dto { public class ChargingPrice { public string StartTime { set; get; } public string EndTime { set; get; } public decimal Fee { set; get; } } public class ChargingBill { public string StartTime { set; get; } public string EndTime { set; get; } public decimal Total { set; get; } public decimal PeriodEnergy { set; get; } /// /// 費率 /// public decimal Fee { set; get; } } }