blob: 9835351fc89005b5e752059ef8872f9af34b8801 (
plain)
1
2
3
4
5
6
7
8
9
|
using System.Collections.Generic;
namespace MediaBrowser.Controller.Providers
{
public class MusicVideoInfo : ItemLookupInfo
{
public IReadOnlyList<string> Artists { get; set; }
}
}
|