blob: 0b927f6eb01bf26b294ba909be13eb22d6e4fdf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma warning disable CS1591
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
public class MusicVideoInfo : ItemLookupInfo
{
public IReadOnlyList<string> Artists { get; set; }
}
}
|