using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.TaskScheduler.Models { internal class TransactionResponse { internal DateTime StartTransactionReportedOn { set; get; } internal DateTime StopTransactionReportedOn { set; get; } internal string ErrorMsg { set; get; } } internal class BasicResponse { internal DateTime ReportedOn { set; get; } internal string ErrorMsg { set; get; } } }