12345678910111213141516171819202122232425262728293031323334 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace EVCB_OCPP.WEBAPI.Models.WebAPI
- {
- public class CPOOuterResponse
- {
- public CPOOuterResponse()
- {
- StatusCode = (int)CPO_StatusCode.NoAction;
-
- }
- public int StatusCode { set; get; }
- public string StatusMessage { set; get;}
- public string Data { set; get; }
- [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
- public string SerialNo { set; get; }
- [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
- public string ErrorDetail { set; get; }
- }
- }
|