1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class VConnectorStatusCombind
- {
- public string ChargeBoxId { get; set; }
- public byte ConnectorId { get; set; }
- public int Status { get; set; }
- public int Type { get; set; }
- public string VendorErrorCode { get; set; }
- public int ChargePointErrorCodeId { get; set; }
- public decimal TotalEnergy { get; set; }
- public string Ocpp { get; set; }
- }
|