8 lines
127 B
Go
8 lines
127 B
Go
|
package model
|
||
|
|
||
|
type PropertyHolder interface {
|
||
|
GetLanguages() []string
|
||
|
GetSubtitles() []string
|
||
|
GetResolution() Resolution
|
||
|
}
|