feat: sort and proxy config

refactor/fs
Noah Hsu 2022-06-07 16:38:31 +08:00
parent ac0f984136
commit 84eb978731
1 changed files with 15 additions and 0 deletions

View File

@ -7,4 +7,19 @@ type Account struct {
Driver string `json:"driver"`
Status string `json:"status"`
Addition string `json:"addition"`
Sort
Proxy
}
type Sort struct {
OrderBy string `json:"order_by"`
OrderDirection string `json:"order_direction"`
ExtractFolder string `json:"extract_folder"`
}
type Proxy struct {
WebProxy string `json:"web_proxy"`
WebdavProxy bool `json:"webdav_proxy"`
WebdavDirect bool `json:"webdav_direct"`
DownProxyUrl string `json:"down_proxy_url"`
}