using EVCB_OCPP.Packet.Messages.SubTypes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.WSServer.Dto { public class IdTokenInfo { public IdTagInfo IdTagInfo { set; get; } public decimal AccountBalance { set; get; } public List ChargePointFee { set; get; } } public class ChargePointFee { public bool IsAC { set; get; } public decimal? PerkWhFee { set; get; } public decimal? PerHourFee { set; get; } public decimal ParkingFee { set; get; } public string Currency { set; get; } public string DisplayMessage { set; get; } } }