123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class ConnectorMeterValueRecord
- {
- public ConnectorMeterValueRecord()
- {
- TransactionId = -1;
- }
- public long Id { get; set; }
- public byte ConnectorId { get; set; }
- public string Value { get; set; }
- public DateTime CreatedOn { get; set; }
- public int ContextId { get; set; }
- public int FormatId { get; set; }
- public int MeasurandId { get; set; }
- public int PhaseId { get; set; }
- public int LocationId { get; set; }
- public int UnitId { get; set; }
- public string ChargeBoxId { get; set; }
- public int TransactionId { get; set; }
- }
|