21 lines
278 B
Go
Raw Normal View History

2022-07-29 03:34:55 -05:00
package structs
type Intro struct {
EpisodeId string
Series string
Season int
Title string
IntroStart float32
IntroEnd float32
Duration float32
Valid bool
FormattedStart string
FormattedEnd string
2022-07-29 03:34:55 -05:00
ShowSkipPromptAt float32
HideSkipPromptAt float32
}