From cad92f8fa5ef7ec9ce04daaa5fb34698ba2ce1d2 Mon Sep 17 00:00:00 2001
From: acite <1498045907@qq.com>
Date: Sat, 13 Sep 2025 14:46:45 +0800
Subject: [PATCH] [fix] No tags in Comic Class
---
.idea/.idea.Abyss/.idea/workspace.xml | 8 ++------
Abyss/Model/Comic.cs | 4 +++-
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/.idea/.idea.Abyss/.idea/workspace.xml b/.idea/.idea.Abyss/.idea/workspace.xml
index 331c5e9..5a018f1 100644
--- a/.idea/.idea.Abyss/.idea/workspace.xml
+++ b/.idea/.idea.Abyss/.idea/workspace.xml
@@ -11,10 +11,6 @@
-
-
-
-
@@ -99,7 +95,7 @@
"vue.rearranger.settings.migration": "true"
}
}
-
+
@@ -207,7 +203,7 @@
-
+
diff --git a/Abyss/Model/Comic.cs b/Abyss/Model/Comic.cs
index 71c0030..9654119 100644
--- a/Abyss/Model/Comic.cs
+++ b/Abyss/Model/Comic.cs
@@ -11,7 +11,9 @@ public class Comic
[JsonProperty("bookmarks")]
public List Bookmarks { get; set; } = new();
[JsonProperty("author")]
- public string Author { get; set; } = "";
+ public string Author { get; set; } = "";
+ [JsonProperty("tags")]
+ public List Tags { get; set; } = new();
[JsonProperty("list")]
public List List { get; set; } = new();
}
\ No newline at end of file