MusicVideoInfo.cs 203 B

123456789
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Providers
  3. {
  4. public class MusicVideoInfo : ItemLookupInfo
  5. {
  6. public IReadOnlyList<string> Artists { get; set; }
  7. }
  8. }