123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.ConnectionLogDB;
- public partial class MachineConnectionLog
- {
- public MachineConnectionLog()
- {
- IsSent = false;
- }
- public long Id { get; set; }
- public string MessageType { get; set; }
- public string Data { get; set; }
- public string Msg { get; set; }
- public DateTime CreatedOn { get; set; }
- public string ChargeBoxId { get; set; }
- public bool IsSent { get; set; }
- public string EvseendPoint { get; set; }
- public string Session { get; set; }
- }
|