1
0
Fork 0
hats/pkg/qbittorrent/structs.go

11 lines
330 B
Go
Raw Permalink Normal View History

2023-11-10 23:22:46 +00:00
package qbittorrent
type GlobalTransferInfo struct {
DownloadSpeed int `json:"dl_info_speed"`
DownloadedData int `json:"dl_info_data"`
UploadSpeed int `json:"up_info_speed"`
UploadedData int `json:"up_info_data"`
DhtNodes int `json:"dht_nodes"`
Status string `json:"connection_status"`
}