diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-15 17:59:20 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-15 17:59:20 -0400 |
| commit | c90cdef3ba630707d16c63dc4392fcc54bcf122d (patch) | |
| tree | 1a90e8896cc0d998d1aa8a34e7f2dd43d3dd456a /MediaBrowser.Controller/Entities/ICollectionFolder.cs | |
| parent | 064b5e82e436c717f74a4d0a353e01e20da9752c (diff) | |
added user view setting
Diffstat (limited to 'MediaBrowser.Controller/Entities/ICollectionFolder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/ICollectionFolder.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/ICollectionFolder.cs b/MediaBrowser.Controller/Entities/ICollectionFolder.cs index 656aa37ce..f46d7ed6f 100644 --- a/MediaBrowser.Controller/Entities/ICollectionFolder.cs +++ b/MediaBrowser.Controller/Entities/ICollectionFolder.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { @@ -9,6 +10,8 @@ namespace MediaBrowser.Controller.Entities { string CollectionType { get; } string Path { get; } + string Name { get; } + Guid Id { get; } IEnumerable<string> PhysicalLocations { get; } } } |
