9 lines
178 B
Go
9 lines
178 B
Go
package subtitles
|
|
|
|
// Subtitle represents a Subtitle
|
|
type Subtitle struct {
|
|
Language string `json:"language"`
|
|
URL string `json:"url"`
|
|
VVTFile string `json:"vvt_file"`
|
|
}
|