aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-08-19 18:02:34 +0200
committerBond_009 <bond.009@outlook.com>2020-08-19 18:02:34 +0200
commit68edccd9f4e9137b13ad4006c19bb6582341aec6 (patch)
treec131fb1c87ff414b2df245e93cf834fc739ae75c /MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
parente77a45adcf5241cb8c72d6786344228ae9d61c8e (diff)
More warn
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
index 688439e6c..6a350212b 100644
--- a/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
+++ b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs
@@ -1,4 +1,7 @@
+#pragma warning disable CS1591
+
using System;
+using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
@@ -8,6 +11,6 @@ namespace MediaBrowser.Controller.Entities
/// Gets or sets the special feature ids.
/// </summary>
/// <value>The special feature ids.</value>
- Guid[] SpecialFeatureIds { get; set; }
+ IReadOnlyList<Guid> SpecialFeatureIds { get; set; }
}
}