VConnectorStatusCombind.cs 489 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MainDb;
  4. public partial class VConnectorStatusCombind
  5. {
  6. public string ChargeBoxId { get; set; }
  7. public byte ConnectorId { get; set; }
  8. public int Status { get; set; }
  9. public int Type { get; set; }
  10. public string VendorErrorCode { get; set; }
  11. public int ChargePointErrorCodeId { get; set; }
  12. public decimal TotalEnergy { get; set; }
  13. public string Ocpp { get; set; }
  14. }