MusicVideoInfo.cs 254 B

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