model/property_holder.go

8 lines
127 B
Go
Raw Normal View History

2022-08-22 11:35:41 +02:00
package model
type PropertyHolder interface {
GetLanguages() []string
GetSubtitles() []string
GetResolution() Resolution
}