1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class VMachine
- {
- public string Id { get; set; }
- public string ChargeBoxId { get; set; }
- public Guid CustomerId { get; set; }
- public int GunAmt { get; set; }
- public bool Online { get; set; }
- public decimal RatedPower { get; set; }
- public int ConnectionType { get; set; }
- public DateTime HeartbeatUpdatedOn { get; set; }
- public DateTime? OfflineOn { get; set; }
- public string ConnectorType { get; set; }
- public string VendorId { get; set; }
- public string ModelName { get; set; }
- public bool IsDelete { get; set; }
- public int Ttiatag { get; set; }
- }
|