12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class MachineConfiguration
- {
- public int Id { get; set; }
- public string ConfigureName { get; set; }
- public string ConfigureSetting { get; set; }
- public bool ReadOnly { get; set; }
- public string ChargeBoxId { get; set; }
- public bool Exists { get; set; }
- }
|