mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
19 lines
452 B
Go
19 lines
452 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
|
|
ActionClient string
|
|
Rejections []string
|
|
Protocol ReleaseProtocol // torrent, usenet
|
|
Implementation ReleaseImplementation // irc, rss, api
|
|
Timestamp time.Time
|
|
}
|