MachineConfiguration.cs 530 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MainDb;
  4. public partial class MachineConfiguration
  5. {
  6. public MachineConfiguration()
  7. {
  8. Exists = false;
  9. ReadOnly = true;
  10. ConfigureSetting = string.Empty;
  11. }
  12. public int Id { get; set; }
  13. public string ConfigureName { get; set; }
  14. public string ConfigureSetting { get; set; }
  15. public bool ReadOnly { get; set; }
  16. public string ChargeBoxId { get; set; }
  17. public bool Exists { get; set; }
  18. }