MachineConfiguration.cs 393 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MainDb;
  4. public partial class MachineConfiguration
  5. {
  6. public int Id { get; set; }
  7. public string ConfigureName { get; set; }
  8. public string ConfigureSetting { get; set; }
  9. public bool ReadOnly { get; set; }
  10. public string ChargeBoxId { get; set; }
  11. public bool Exists { get; set; }
  12. }