using System;
using System.Collections.Generic;

namespace EVCB_OCPP.Domain.Models.MainDb;

public partial class ConnectorStatus
{
    public ConnectorStatus()
    {
        ErrorInfo = string.Empty;
        VendorId = string.Empty;
        VendorErrorCode = string.Empty;

    }

    public string Id { get; set; }

    public byte ConnectorId { get; set; }

    public int Status { get; set; }

    public string ErrorInfo { get; set; }

    public string VendorId { get; set; }

    public DateTime CreatedOn { get; set; }

    public string VendorErrorCode { get; set; }

    public int ChargePointErrorCodeId { get; set; }

    public string ChargeBoxId { get; set; }

    public decimal TotalEnergy { get; set; }

    public int Type { get; set; }
}