12345678910111213141516171819202122232425262728293031 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.OFILM
- {
- public class LanxinRequestDto
- {
- [JsonProperty("appid")]
- public string Appid { get; set; }
- [JsonProperty("secret")]
- public string Secret { get; set; }
- [JsonProperty("tousers")]
- public string Tousers { get; set; }
- [JsonProperty("content")]
- public string Content { get; set; }
- }
- public class LanxinConfig : LanxinRequestDto
- {
- public string Url { get; set; }
- }
- public class OfilmLanxinReponseDto
- {
- public int Code { get; set; }
- public string Message { get; set; }
- public string Data { get; set; }
- }
- }
|