1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class ConnectorStatus
- {
- public string Id { get; set; }
- public byte ConnectorId { get; set; }
- public int Status { get; set; }
- public string ErrorInfo { get; set; }
- public string VendorId { get; set; }
- public DateTime CreatedOn { get; set; }
- public string VendorErrorCode { get; set; }
- public int ChargePointErrorCodeId { get; set; }
- public string ChargeBoxId { get; set; }
- public decimal TotalEnergy { get; set; }
- public int Type { get; set; }
- }
|