MachineError.cs 590 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MainDb;
  4. public partial class MachineError
  5. {
  6. public MachineError()
  7. {
  8. }
  9. public int Id { get; set; }
  10. public byte ConnectorId { get; set; }
  11. public int PreStatus { get; set; }
  12. public int Status { get; set; }
  13. public string ErrorInfo { get; set; }
  14. public string VendorId { get; set; }
  15. public DateTime CreatedOn { get; set; }
  16. public int ErrorCodeId { get; set; }
  17. public string VendorErrorCode { get; set; }
  18. public string ChargeBoxId { get; set; }
  19. }