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 09c0b20cab..84de803aa2 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 = 1, + FileSystem = 0, /// <summary> /// The remote /// </summary> - Remote = 2, + Remote = 1, /// <summary> /// The virtual /// </summary> - Virtual = 3, + Virtual = 2, /// <summary> /// The offline /// </summary> - Offline = 4 + Offline = 3 } } |
