Files
Abyss/Abyss/Model/Media/Comic.cs
2025-10-01 18:49:55 +08:00

21 lines
627 B
C#

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<Bookmark> Bookmarks { get; set; } = new();
[JsonProperty("author")]
public string Author { get; set; } = "";
[JsonProperty("tags")]
public List<string> Tags { get; set; } = new();
[JsonProperty("list")]
public List<string> List { get; set; } = new();
}