aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/MusicVideoInfo.cs
blob: 322320abdf7fcf494da0de12ede8ee0cb7fe9a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#nullable disable

#pragma warning disable CS1591

using System.Collections.Generic;

namespace MediaBrowser.Controller.Providers
{
    public class MusicVideoInfo : ItemLookupInfo
    {
        public IReadOnlyList<string> Artists { get; set; }
    }
}