using System;
using System.Collections.Generic;

namespace EVCB_OCPP.Domain.Models.MainDb;

public partial class MachineError
{
    public MachineError()
    {
    }

    public int Id { get; set; }

    public byte ConnectorId { get; set; }

    public int PreStatus { get; set; }

    public int Status { get; set; }

    public string ErrorInfo { get; set; }

    public string VendorId { get; set; }

    public DateTime CreatedOn { get; set; }

    public int ErrorCodeId { get; set; }

    public string VendorErrorCode { get; set; }

    public string ChargeBoxId { get; set; }

    public DateTimeKind FinishedOn { get; set; }
}