diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-06-20 13:13:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-20 13:13:47 -0400 |
| commit | 820bf41e693240cecd7ee75953535cd8ebfa0a59 (patch) | |
| tree | 6de5a8d9c15c9d50603a7c6bfdafca24263d273a /MediaBrowser.Controller | |
| parent | 7f7e083794da64bbd1b43f03f88170a410a0c57e (diff) | |
| parent | 3d2f6db1b117a72405bbf2292b049f0a949f6f64 (diff) | |
Merge pull request #1863 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Channels/ChannelItemInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelItemInfo.cs b/MediaBrowser.Controller/Channels/ChannelItemInfo.cs index 6135240e9..57c2f1f7f 100644 --- a/MediaBrowser.Controller/Channels/ChannelItemInfo.cs +++ b/MediaBrowser.Controller/Channels/ChannelItemInfo.cs @@ -55,6 +55,10 @@ namespace MediaBrowser.Controller.Channels public string HomePageUrl { get; set; } + public List<string> Artists { get; set; } + + public List<string> AlbumArtists { get; set; } + public ChannelItemInfo() { MediaSources = new List<ChannelMediaInfo>(); @@ -64,6 +68,8 @@ namespace MediaBrowser.Controller.Channels People = new List<PersonInfo>(); Tags = new List<string>(); ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); + Artists = new List<string>(); + AlbumArtists = new List<string>(); } } } |
