Files
seanime-docker/seanime-2.9.10/internal/torrent_clients/qbittorrent/model/peer.go
2025-09-20 14:08:38 +01:00

20 lines
699 B
Go

package qbittorrent_model
type Peer struct {
Client string `json:"client"`
Connection string `json:"connection"`
Country string `json:"country"`
CountryCode string `json:"country_code"`
DLSpeed int `json:"dlSpeed"`
Downloaded int `json:"downloaded"`
Files string `json:"files"`
Flags string `json:"flags"`
FlagsDescription string `json:"flags_desc"`
IP string `json:"ip"`
Port int `json:"port"`
Progress float64 `json:"progress"`
Relevance int `json:"relevance"`
ULSpeed int `json:"up_speed"`
Uploaded int `json:"uploaded"`
}