mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
18 lines
421 B
Go
18 lines
421 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type EventsReleasePushed struct {
|
|
ReleaseName string
|
|
Filter string
|
|
Indexer string
|
|
InfoHash string
|
|
Size uint64
|
|
Status ReleasePushStatus
|
|
Action string
|
|
ActionType ActionType
|
|
Rejections []string
|
|
Protocol ReleaseProtocol // torrent
|
|
Implementation ReleaseImplementation // irc, rss, api
|
|
Timestamp time.Time
|
|
}
|