aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/LocationType.cs
diff options
context:
space:
mode:
authorBond_009 <Bond.009@outlook.com>2020-02-04 01:49:27 +0100
committerBond_009 <Bond.009@outlook.com>2020-02-04 01:49:27 +0100
commitf47ad85011a1251c3fda8a213c0b96dcf46d5e05 (patch)
tree0cca4951e5b4778e00e84b377b09d648c8ba9d0b /MediaBrowser.Model/Entities/LocationType.cs
parent176e8509739ffd3d7002c94adbd814c33b5172e2 (diff)
Fix warnings MediaBrowser.Model
Diffstat (limited to 'MediaBrowser.Model/Entities/LocationType.cs')
-rw-r--r--MediaBrowser.Model/Entities/LocationType.cs13
1 files changed, 8 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Entities/LocationType.cs b/MediaBrowser.Model/Entities/LocationType.cs
index 52c08b28b5..879b31c5c8 100644
--- a/MediaBrowser.Model/Entities/LocationType.cs
+++ b/MediaBrowser.Model/Entities/LocationType.cs
@@ -1,24 +1,27 @@
namespace MediaBrowser.Model.Entities
{
/// <summary>
- /// Enum LocationType
+ /// Enum LocationType.
/// </summary>
public enum LocationType
{
/// <summary>
- /// The file system
+ /// The file system.
/// </summary>
FileSystem = 0,
+
/// <summary>
- /// The remote
+ /// The remote.
/// </summary>
Remote = 1,
+
/// <summary>
- /// The virtual
+ /// The virtual.
/// </summary>
Virtual = 2,
+
/// <summary>
- /// The offline
+ /// The offline.
/// </summary>
Offline = 3
}