mpsResponseEx.cs 541 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using Newtonsoft.Json;
  6. namespace CommonObj.model
  7. {
  8. public class mpsResponseEx
  9. {
  10. [JsonProperty("status")]
  11. public string status { get; set; }
  12. [JsonProperty("message")]
  13. public string message { get; set; }
  14. [JsonProperty("requestId")]
  15. public string requestId { get; set; }
  16. public override string ToString()
  17. {
  18. return JsonConvert.SerializeObject(this);
  19. }
  20. }
  21. }