namespace EVCB_OCPP.WSServer.Dto
{
    public class ConnectorErrorStauts
    {

        public byte ConnectorId { get; set; }

        public int Status { get; set; }

        public int ChargePointErrorCodeId { get; set; }

        public string ErrorInfo { get; set; }

        public string VendorId { get; set; }

        public string VendorErrorCode { get; set; }


    }
}