优化webdav相关

This commit is contained in:
谦君
2025-12-27 01:37:35 +08:00
parent 66783f896c
commit 49753566c3
5 changed files with 25 additions and 52 deletions

View File

@@ -1226,3 +1226,11 @@ export interface QuestNotification {
rewards?: QuestReward
read?: boolean
}
// WebDAV 配置
export interface WebDAVConfig {
serverUrl: string // WebDAV 服务器地址
username: string // 用户名
password: string // 密码或应用专用密码
basePath: string // 存档存放路径
}