YTSFlix_Go/ytsclient/order.go

21 lines
413 B
Go
Raw Normal View History

2018-11-04 14:58:15 +00:00
package ytsclient
type SortBy string
type Order string
const (
// OrderBy Enum
Title SortBy = "title"
Year SortBy = "year"
Rating SortBy = "rating"
Peers SortBy = "peers"
Seeds SortBy = "seeds"
DownloadCount SortBy = "downloadCount"
LikeCount SortBy = "likeCount"
DateAdded SortBy = "dateAdded"
// Order Enum
Asc Order = "asc"
Desc Order = "desc"
)