LanxinRequestDto.cs 756 B

12345678910111213141516171819202122232425262728293031
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace DllEapEntity.OFILM
  6. {
  7. public class LanxinRequestDto
  8. {
  9. [JsonProperty("appid")]
  10. public string Appid { get; set; }
  11. [JsonProperty("secret")]
  12. public string Secret { get; set; }
  13. [JsonProperty("tousers")]
  14. public string Tousers { get; set; }
  15. [JsonProperty("content")]
  16. public string Content { get; set; }
  17. }
  18. public class LanxinConfig : LanxinRequestDto
  19. {
  20. public string Url { get; set; }
  21. }
  22. public class OfilmLanxinReponseDto
  23. {
  24. public int Code { get; set; }
  25. public string Message { get; set; }
  26. public string Data { get; set; }
  27. }
  28. }