diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/LocationType.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/LocationType.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Entities/LocationType.cs b/MediaBrowser.Model/Entities/LocationType.cs index e6c2a843b..09c0b20ca 100644 --- a/MediaBrowser.Model/Entities/LocationType.cs +++ b/MediaBrowser.Model/Entities/LocationType.cs @@ -9,18 +9,18 @@ namespace MediaBrowser.Model.Entities /// <summary> /// The file system /// </summary> - FileSystem, + FileSystem = 1, /// <summary> /// The remote /// </summary> - Remote, + Remote = 2, /// <summary> /// The virtual /// </summary> - Virtual, + Virtual = 3, /// <summary> /// The offline /// </summary> - Offline + Offline = 4 } } |
