charactor

This commit is contained in:
2025-11-15 18:54:47 +08:00
parent 3e953e22b0
commit 3fec078ba6
8 changed files with 243 additions and 4 deletions

View File

@@ -49,6 +49,14 @@ export interface CreateResourceParams {
images: number[];
gallery: number[];
gallery_nsfw: number[];
charactors: CharactorParams[];
}
export interface CharactorParams {
name: string;
alias: string[];
cv: string;
image: number;
}
export interface Image {
@@ -88,6 +96,7 @@ export interface ResourceDetails {
related: Resource[];
gallery: number[];
galleryNsfw: number[];
charactors: CharactorParams[];
}
export interface Storage {