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; }
///
/// 作者ID
///
public string authorid { get; set; }
///
/// 头像
///
public string avatar { get; set; }
///
/// 用户所在地
///
public string location { get; set; }
///
/// 国家图标
///
public string countryIcon { get; set; }
///
/// 详情URL
///
public string infoUrl { get; set; }
///
/// 缩略图
///
public string imageUrl { get; set; }
///
/// 点赞数
///
public int likeCount { get; set; }
///
/// 标签
///
public string tagList { get; set; }
///
/// 附件类型image:帖子为图片,video:帖子为视频
///
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; }
}
}