added language support for parsed torrents

This commit is contained in:
Timon Ringwald 2022-08-03 23:53:06 +02:00
parent 9e6c4a3313
commit 9055634104

View File

@ -1,8 +1,9 @@
package model package model
type ParsedTorrent struct { type ParsedTorrent struct {
Torrent *Torrent Torrent *Torrent
Name string Name string
Episode int Episode int
Parser *Parser Languages []string
Parser *Parser
} }