TransactionResponse.cs 553 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EVCB_OCPP.TaskScheduler.Models
  7. {
  8. internal class TransactionResponse
  9. {
  10. internal DateTime StartTransactionReportedOn { set; get; }
  11. internal DateTime StopTransactionReportedOn { set; get; }
  12. internal string ErrorMsg { set; get; }
  13. }
  14. internal class BasicResponse
  15. {
  16. internal DateTime ReportedOn { set; get; }
  17. internal string ErrorMsg { set; get; }
  18. }
  19. }