aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/ExtraResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Naming/Video/ExtraResult.cs')
-rw-r--r--Emby.Naming/Video/ExtraResult.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Emby.Naming/Video/ExtraResult.cs b/Emby.Naming/Video/ExtraResult.cs
new file mode 100644
index 0000000000..ca79af9da7
--- /dev/null
+++ b/Emby.Naming/Video/ExtraResult.cs
@@ -0,0 +1,18 @@
+using System.Collections.Generic;
+
+namespace Emby.Naming.Video
+{
+ public class ExtraResult
+ {
+ /// <summary>
+ /// Gets or sets the type of the extra.
+ /// </summary>
+ /// <value>The type of the extra.</value>
+ public string ExtraType { get; set; }
+ /// <summary>
+ /// Gets or sets the rule.
+ /// </summary>
+ /// <value>The rule.</value>
+ public ExtraRule Rule { get; set; }
+ }
+}