using Newtonsoft.Json; namespace Abyss.Model.Media; public class Comic { [JsonProperty("comic_name")] public string ComicName { get; set; } = ""; [JsonProperty("page_count")] public int PageCount { get; set; } [JsonProperty("cover")] public string? Cover { get; set; } = ""; [JsonProperty("bookmarks")] public List Bookmarks { get; set; } = new(); [JsonProperty("author")] public string Author { get; set; } = ""; [JsonProperty("tags")] public List Tags { get; set; } = new(); [JsonProperty("list")] public List List { get; set; } = new(); }