diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-11 17:55:48 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-11 17:55:48 -0400 |
| commit | b7867214ef317bbf6502e53701a990ec5f13b645 (patch) | |
| tree | 428594aefb259b23b2ae990a50417c75c41f4338 /MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs | |
| parent | a7db7cd40cf303b4f95c25ac34bd7f947b084344 (diff) | |
update download error handling
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs index b3a0dc237..f4905b7dc 100644 --- a/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs +++ b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs @@ -1,5 +1,4 @@ using System; -using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { @@ -9,6 +8,6 @@ namespace MediaBrowser.Controller.Entities /// Gets or sets the special feature ids. /// </summary> /// <value>The special feature ids.</value> - List<Guid> SpecialFeatureIds { get; set; } + Guid[] SpecialFeatureIds { get; set; } } } |
