123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace AirWheel.Cycling.Entity.ResponseMod
- {
- public class ResponseDiscovery
- {
-
-
-
- public string tid
- {
- get; set;
- }
-
-
-
- public string title
- {
- get; set;
- }
-
-
-
- public string createTime
- {
- get; set;
- }
-
-
-
- public string author { get; set; }
-
-
-
- public string authorid { get; set; }
-
-
-
- public string avatar { get; set; }
-
-
-
- public string location { get; set; }
-
-
-
-
- public string countryIcon { get; set; }
-
-
-
- public string infoUrl { get; set; }
-
-
-
- public string imageUrl { get; set; }
-
-
-
- public int likeCount { get; set; }
-
-
-
- public string tagList { get; set; }
-
-
-
- public string type { get; set; }
-
-
-
-
- public string originImageUrl { get; set; }
-
-
-
- public int imageWidth { get; set; }
-
-
-
- public int imageHeight { get; set; }
-
-
-
- public string videoUrl { get; set; }
-
-
-
- public string videoTime { get; set; }
- }
- }
|