mirror of
https://github.com/Wanxp/obsidian-douban.git
synced 2026-04-07 19:08:43 +08:00
13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
export default class DoubanExtract {
|
|
id: string;
|
|
title: string;
|
|
type: string;
|
|
score:number;
|
|
image:string;
|
|
url: string;
|
|
desc: string;
|
|
publisher:string;
|
|
datePublished:Date;
|
|
genre:string[];
|
|
}
|