mirror of
https://github.com/Wanxp/obsidian-douban.git
synced 2026-04-04 08:38:41 +08:00
17 lines
308 B
TypeScript
17 lines
308 B
TypeScript
import {SearchPageInfo} from "./SearchPageInfo";
|
|
|
|
export class SearchPage extends SearchPageInfo{
|
|
|
|
private _list:any[];
|
|
|
|
|
|
constructor(total: number, pageNum: number, pageSize: number, list: any[]) {
|
|
super(total, pageNum, pageSize);
|
|
this._list = list;
|
|
}
|
|
|
|
public get list() {
|
|
return this._list;
|
|
}
|
|
}
|