mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
19 lines
294 B
Go
19 lines
294 B
Go
package state
|
|
|
|
type CacheState struct {
|
|
Hash string
|
|
Capacity int64
|
|
Filled int64
|
|
PiecesLength int64
|
|
PiecesCount int
|
|
DownloadSpeed float64
|
|
Pieces map[int]ItemState
|
|
}
|
|
|
|
type ItemState struct {
|
|
Id int
|
|
Length int64
|
|
Size int64
|
|
Completed bool
|
|
}
|