using DownKyi.Core.BiliApi.Models; using Newtonsoft.Json; using System.Collections.Generic; namespace DownKyi.Core.BiliApi.Cheese.Models { public class CheeseBrief : BaseModel { // content [JsonProperty("img")] public List Img { get; set; } [JsonProperty("title")] public string Title { get; set; } [JsonProperty("type")] public int Type { get; set; } } }