12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.ConnectionLogDB;
- public partial class MachineConnectionLog
- {
- 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; }
- }
|