model/parsed_torrent.go

10 lines
137 B
Go
Raw Normal View History

2022-08-03 19:58:31 +02:00
package model
type ParsedTorrent struct {
Torrent *Torrent
Name string
Episode int
Languages []string
Parser *Parser
2022-08-03 19:58:31 +02:00
}