MachineConnectionLog.cs 589 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.ConnectionLogDB;
  4. public partial class MachineConnectionLog
  5. {
  6. public MachineConnectionLog()
  7. {
  8. IsSent = false;
  9. }
  10. public long Id { get; set; }
  11. public string MessageType { get; set; }
  12. public string Data { get; set; }
  13. public string Msg { get; set; }
  14. public DateTime CreatedOn { get; set; }
  15. public string ChargeBoxId { get; set; }
  16. public bool IsSent { get; set; }
  17. public string EvseendPoint { get; set; }
  18. public string Session { get; set; }
  19. }