diff options
Diffstat (limited to 'Emby.Naming/Video/ExtraResult.cs')
| -rw-r--r-- | Emby.Naming/Video/ExtraResult.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Emby.Naming/Video/ExtraResult.cs b/Emby.Naming/Video/ExtraResult.cs index ff6f20c47f..60d6b80ec5 100644 --- a/Emby.Naming/Video/ExtraResult.cs +++ b/Emby.Naming/Video/ExtraResult.cs @@ -1,3 +1,5 @@ +using MediaBrowser.Model.Entities; + namespace Emby.Naming.Video { public class ExtraResult @@ -6,7 +8,8 @@ namespace Emby.Naming.Video /// Gets or sets the type of the extra. /// </summary> /// <value>The type of the extra.</value> - public string ExtraType { get; set; } + public ExtraType? ExtraType { get; set; } + /// <summary> /// Gets or sets the rule. /// </summary> |
