using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } } }