diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-14 15:24:56 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-14 15:24:56 -0500 |
| commit | e9a5bb699e42d6d7aa166ab03a35bb64060828b4 (patch) | |
| tree | 52789e15aea4e01a0bcc04dd495e4b6dfff8114e /MediaBrowser.Controller/Entities/ILibraryItem.cs | |
| parent | f4b890f163cd3be5b399ef03be409106ab8ff60b (diff) | |
added recording progress bars
Diffstat (limited to 'MediaBrowser.Controller/Entities/ILibraryItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/ILibraryItem.cs | 28 |
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; } + } +} |
