MusicVideoInfo.cs 235 B

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