私人影库增加追番订阅功能

This commit is contained in:
mtvpls
2026-02-18 17:20:37 +08:00
parent e4a76b3f9d
commit 96b08dc0bd
11 changed files with 1455 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
export interface AnimeSubscription {
id: string;
title: string;
filterText: string;
source: 'acgrip' | 'mikan' | 'dmhy';
enabled: boolean;
lastCheckTime: number;
lastEpisode: number;
createdAt: number;
updatedAt: number;
createdBy: string;
}
export interface AnimeSubscriptionConfig {
Enabled: boolean;
Subscriptions: AnimeSubscription[];
}