aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IntroInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-11 19:02:28 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-11 19:02:28 -0400
commitb9b568de13d81f9db1a8502d50940475c1d79c72 (patch)
treea808b700095f876e437b95c432c0220e241f9fda /MediaBrowser.Controller/Library/IntroInfo.cs
parent0d605b8672ece5129e833a2e9cde11a8aaf1b62a (diff)
updated nuget
Diffstat (limited to 'MediaBrowser.Controller/Library/IntroInfo.cs')
-rw-r--r--MediaBrowser.Controller/Library/IntroInfo.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/IntroInfo.cs b/MediaBrowser.Controller/Library/IntroInfo.cs
new file mode 100644
index 000000000..d0e61d0f0
--- /dev/null
+++ b/MediaBrowser.Controller/Library/IntroInfo.cs
@@ -0,0 +1,19 @@
+using System;
+
+namespace MediaBrowser.Controller.Library
+{
+ public class IntroInfo
+ {
+ /// <summary>
+ /// Gets or sets the path.
+ /// </summary>
+ /// <value>The path.</value>
+ public string Path { get; set; }
+
+ /// <summary>
+ /// Gets or sets the item id.
+ /// </summary>
+ /// <value>The item id.</value>
+ public Guid? ItemId { get; set; }
+ }
+} \ No newline at end of file