12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class MachineError
- {
- public MachineError()
- {
- }
- public int Id { get; set; }
- public byte ConnectorId { get; set; }
- public int PreStatus { get; set; }
- public int Status { get; set; }
- public string ErrorInfo { get; set; }
- public string VendorId { get; set; }
- public DateTime CreatedOn { get; set; }
- public int ErrorCodeId { get; set; }
- public string VendorErrorCode { get; set; }
- public string ChargeBoxId { get; set; }
- }
|