add subscribe share statistic api

This commit is contained in:
jxxghp
2025-07-16 08:31:28 +08:00
parent 90cc91aa7f
commit 52a98efd0a
3 changed files with 32 additions and 0 deletions
+9
View File
@@ -138,6 +138,15 @@ class SubscribeShare(BaseModel):
count: Optional[int] = 0
class SubscribeShareStatistics(BaseModel):
# 分享人
share_user: Optional[str] = None
# 分享数量
share_count: Optional[int] = 0
# 总复用人次
total_reuse_count: Optional[int] = 0
class SubscribeDownloadFileInfo(BaseModel):
# 种子名称
torrent_title: Optional[str] = None