ActiveSession.cs 880 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace EVCB_OCPP.WEBAPI.Models.WebAPI.Dto
  6. {
  7. public class ActiveSession
  8. {
  9. public string ChargeBoxId { set; get; }
  10. public int SessionId { set; get; }
  11. public int ConnectorId { set; get; }
  12. public string IdTag { set; get; }
  13. public int ElaspedTime { set; get; }
  14. public string Power { set; get; }
  15. public string Power_Format { set; get; }
  16. public string Current { set; get; }
  17. public string Current_Format { set; get; }
  18. public string Energy { set; get; }
  19. public string Energy_Format { set; get; }
  20. public string Voltage { set; get; }
  21. public string Voltage_Format { set; get; }
  22. public string SOC { set; get; }
  23. public string SOC_Format { set; get; }
  24. }
  25. }