aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-11 17:55:48 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-11 17:55:48 -0400
commitb7867214ef317bbf6502e53701a990ec5f13b645 (patch)
tree428594aefb259b23b2ae990a50417c75c41f4338 /MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
parenta7db7cd40cf303b4f95c25ac34bd7f947b084344 (diff)
update download error handling
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs3
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; }
}
}