新增订阅分享统计功能

This commit is contained in:
jxxghp
2025-07-16 09:37:34 +08:00
parent 6ddc3ea996
commit caa67a0f49
6 changed files with 356 additions and 1 deletions

View File

@@ -1391,3 +1391,13 @@ export interface TorrentCacheData {
// 缓存数据
data: TorrentCacheItem[]
}
// 订阅分享统计
export interface SubscribeShareStatistics {
// 分享人
share_user?: string
// 分享数量
share_count?: number
// 总复用人次
total_reuse_count?: number
}