Customer.cs 1.3 KB

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