aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/StubResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Naming/Video/StubResult.cs')
-rw-r--r--Emby.Naming/Video/StubResult.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/Emby.Naming/Video/StubResult.cs b/Emby.Naming/Video/StubResult.cs
new file mode 100644
index 0000000000..c9d06c9a7f
--- /dev/null
+++ b/Emby.Naming/Video/StubResult.cs
@@ -0,0 +1,28 @@
+using System.Collections.Generic;
+
+namespace Emby.Naming.Video
+{
+ public class StubResult
+ {
+ /// <summary>
+ /// Gets or sets a value indicating whether this instance is stub.
+ /// </summary>
+ /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
+ public bool IsStub { get; set; }
+ /// <summary>
+ /// Gets or sets the type of the stub.
+ /// </summary>
+ /// <value>The type of the stub.</value>
+ public string StubType { get; set; }
+ /// <summary>
+ /// Gets or sets the tokens.
+ /// </summary>
+ /// <value>The tokens.</value>
+ public List<string> Tokens { get; set; }
+
+ public StubResult()
+ {
+ Tokens = new List<string>();
+ }
+ }
+}