123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace EVCB_OCPP.WEBAPI.Models.WebAPI.Dto
- {
- public class ActiveSession
- {
- public string ChargeBoxId { set; get; }
- public int SessionId { set; get; }
- public int ConnectorId { set; get; }
- public string IdTag { set; get; }
- public int ElaspedTime { set; get; }
- public string Power { set; get; }
- public string Power_Format { set; get; }
- public string Current { set; get; }
- public string Current_Format { set; get; }
- public string Energy { set; get; }
- public string Energy_Format { set; get; }
- public string Voltage { set; get; }
- public string Voltage_Format { set; get; }
- public string SOC { set; get; }
- public string SOC_Format { set; get; }
- }
- }
|