Skip to content

Commit 84eb978

Browse files
committed
feat: sort and proxy config
1 parent ac0f984 commit 84eb978

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

internal/model/account.go

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,19 @@ type Account struct {
77
Driver string `json:"driver"`
88
Status string `json:"status"`
99
Addition string `json:"addition"`
10+
Sort
11+
Proxy
12+
}
13+
14+
type Sort struct {
15+
OrderBy string `json:"order_by"`
16+
OrderDirection string `json:"order_direction"`
17+
ExtractFolder string `json:"extract_folder"`
18+
}
19+
20+
type Proxy struct {
21+
WebProxy string `json:"web_proxy"`
22+
WebdavProxy bool `json:"webdav_proxy"`
23+
WebdavDirect bool `json:"webdav_direct"`
24+
DownProxyUrl string `json:"down_proxy_url"`
1025
}

0 commit comments

Comments
 (0)