Customer.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MainDb;
  4. public partial class Customer
  5. {
  6. public Guid Id { get; set; }
  7. public string Name { get; set; }
  8. public DateTime CreatedOn { get; set; }
  9. public string CreatedBy { get; set; }
  10. public DateTime? Deadline { get; set; }
  11. public DateTime? UpdatedOn { get; set; }
  12. public string UpdatedBy { get; set; }
  13. public string ApiUrl { get; set; }
  14. public string ApiKey { get; set; }
  15. public DateTime? ApiKeyUpdatedOn { get; set; }
  16. public string PartnerId { get; set; }
  17. public string ApiCustomerId { get; set; }
  18. public bool CallPartnerApiOnSchedule { get; set; }
  19. public bool IsShow { get; set; }
  20. public string Ftppath { get; set; }
  21. public string Ftphost { get; set; }
  22. public string Ftpuser { get; set; }
  23. public string Ftppassword { get; set; }
  24. public bool EnableTtia { get; set; }
  25. public string TtiaEquipmentProvider { get; set; }
  26. public int TtiaCustomerId { get; set; }
  27. public string TtiaApiurl { get; set; }
  28. public string TtiaApikey { get; set; }
  29. public bool InstantStopTxReport { get; set; }
  30. public virtual ICollection<Machine> Machines { get; set; } = new List<Machine>();
  31. }