ConnectorStatus.cs 609 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MainDb;
  4. public partial class ConnectorStatus
  5. {
  6. public string Id { get; set; }
  7. public byte ConnectorId { get; set; }
  8. public int Status { get; set; }
  9. public string ErrorInfo { get; set; }
  10. public string VendorId { get; set; }
  11. public DateTime CreatedOn { get; set; }
  12. public string VendorErrorCode { get; set; }
  13. public int ChargePointErrorCodeId { get; set; }
  14. public string ChargeBoxId { get; set; }
  15. public decimal TotalEnergy { get; set; }
  16. public int Type { get; set; }
  17. }