aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ILibraryItem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-14 15:24:56 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-14 15:24:56 -0500
commite9a5bb699e42d6d7aa166ab03a35bb64060828b4 (patch)
tree52789e15aea4e01a0bcc04dd495e4b6dfff8114e /MediaBrowser.Controller/Entities/ILibraryItem.cs
parentf4b890f163cd3be5b399ef03be409106ab8ff60b (diff)
added recording progress bars
Diffstat (limited to 'MediaBrowser.Controller/Entities/ILibraryItem.cs')
-rw-r--r--MediaBrowser.Controller/Entities/ILibraryItem.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/ILibraryItem.cs b/MediaBrowser.Controller/Entities/ILibraryItem.cs
new file mode 100644
index 0000000000..b2f39608f3
--- /dev/null
+++ b/MediaBrowser.Controller/Entities/ILibraryItem.cs
@@ -0,0 +1,28 @@
+using System;
+
+namespace MediaBrowser.Controller.Entities
+{
+ /// <summary>
+ /// Interface ILibraryItem
+ /// </summary>
+ public interface ILibraryItem
+ {
+ /// <summary>
+ /// Gets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ string Name { get; }
+
+ /// <summary>
+ /// Gets the id.
+ /// </summary>
+ /// <value>The id.</value>
+ Guid Id { get; }
+
+ /// <summary>
+ /// Gets the path.
+ /// </summary>
+ /// <value>The path.</value>
+ string Path { get; }
+ }
+}