model/torrent.go

17 lines
216 B
Go
Raw Normal View History

2022-08-03 19:58:31 +02:00
package model
import "time"
type Torrent struct {
2022-08-03 23:43:16 +02:00
ID TorrentID
Title string
Link string
Time time.Time
Seeders int
Leechers int
Downloads int
Trusted bool
2022-08-03 19:58:31 +02:00
}
type TorrentID string