diff options
Diffstat (limited to 'MediaBrowser.Controller/Entities/IBaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/IBaseItem.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IBaseItem.cs b/MediaBrowser.Controller/Entities/IBaseItem.cs new file mode 100644 index 000000000..83ccd55b0 --- /dev/null +++ b/MediaBrowser.Controller/Entities/IBaseItem.cs @@ -0,0 +1,28 @@ +using System; + +namespace MediaBrowser.Controller.Entities +{ + /// <summary> + /// Interface ILibraryItem + /// </summary> + public interface IBaseItem + { + /// <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; } + } +} |
