using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.TaskScheduler.Models { public class EVSECurrentStatus { public Guid CustomerId { set; get; } public string StationId { set; get; } public string Id { get; set; } public string ChargeBoxId { get; set; } public bool Online { get; set; } public DateTime HeartbeatUpdatedOn { get; set; } public DateTime OfflineOn { get; set; } } }