videoInfo.go 242 B

1234567891011
  1. package types
  2. // VideoIMDBInfo 从 movie.xml *.nfo 中解析出的视频信息
  3. type VideoIMDBInfo struct {
  4. ImdbId string
  5. TVdbId string
  6. Year string
  7. Title string
  8. OriginalTitle string
  9. ReleaseDate string
  10. }