diff --git a/internal/model/account.go b/internal/model/account.go index 3a2c0cf5b3d..0e86af2c5bb 100644 --- a/internal/model/account.go +++ b/internal/model/account.go @@ -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"` }