CPOOuterResponse.cs 697 B

12345678910111213141516171819202122232425262728293031323334
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. namespace EVCB_OCPP.WEBAPI.Models.WebAPI
  7. {
  8. public class CPOOuterResponse
  9. {
  10. public CPOOuterResponse()
  11. {
  12. StatusCode = (int)CPO_StatusCode.NoAction;
  13. }
  14. public int StatusCode { set; get; }
  15. public string StatusMessage { set; get;}
  16. public string Data { set; get; }
  17. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  18. public string SerialNo { set; get; }
  19. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  20. public string ErrorDetail { set; get; }
  21. }
  22. }