using System;
using System.Collections.Generic;

namespace EVCB_OCPP.Domain.Models.MainDb;

public partial class MachineConfiguration
{
    public MachineConfiguration()
    {
        Exists = false;
        ReadOnly = true;
        ConfigureSetting = string.Empty;
    }

    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; }
}