model/parsed_torrent.go
2022-08-03 23:53:06 +02:00

10 lines
137 B
Go

package model
type ParsedTorrent struct {
Torrent *Torrent
Name string
Episode int
Languages []string
Parser *Parser
}