model/parsed_torrent.go

9 lines
109 B
Go
Raw Normal View History

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