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
- {
-
-
-
- public int BillingMethod { set; get; }
-
-
-
- public string FeeName { set; get; }
-
-
-
- public decimal ParkingFee { set; get; }
-
-
-
- public string Currency { set; get; }
-
-
-
- public decimal ChargingFeebyHour { set; get; }
- }
- }
|