using System.Collections.Generic; namespace AppletMvcService.Models { /// /// 素材模型 /// public class SuCaiModel { public int total_count { get; set; } public int item_count { get; set; } public List item { get; set; } public bool result { get; set; } } /// /// 素材文件 /// public class SuCaiWJ { public string media_id { get; set; } public string name { get; set; } public long update_time { get; set; } public string url { get; set; } } /// /// 图文素材 /// public class NewsModel { public int total_count { get; set; } public int item_count { get; set; } public List item { get; set; } public bool result { get; set; } } public class NewsModel2 { public bool result { get; set; } public string dataResult { get; set; } } public class NewItem { public string media_id { get; set; } public List content { get; set; } public long update_time { get; set; } } public class newContent { public List news_item { get; set; } public long create_time { get; set; } public long update_time { get; set; } } public class news_item { public string title { get; set; } public string thumb_media_id { get; set; } public int show_cover_pic { get; set; } public string author { get; set; } public string digest { get; set; } //public string content { get; set; } public string url { get; set; } public string content_source_url { get; set; } } public class ContentItem { public string title { get; set; } public string thumb_media_id { get; set; } public int show_cover_pic { get; set; } public string author { get; set; } public string digest { get; set; } public string content { get; set; } public string url { get; set; } public string content_source_url { get; set; } } public class SuCaiSendModel { public string type { get; set; } public int offset { get; set; } public int count { get; set; } } }