aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ILibraryItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/ILibraryItem.cs')
-rw-r--r--MediaBrowser.Controller/Entities/ILibraryItem.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/MediaBrowser.Controller/Entities/ILibraryItem.cs b/MediaBrowser.Controller/Entities/ILibraryItem.cs
deleted file mode 100644
index b2f39608f..000000000
--- a/MediaBrowser.Controller/Entities/ILibraryItem.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-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; }
- }
-}