diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-07 23:45:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-07 23:45:21 +0900 |
| commit | 75d6545145eee8112f03f82ebb4d8c1b414aa192 (patch) | |
| tree | 4a82bcdb8ace617b8d0feba19aec8a9f2a629c5b /MediaBrowser.Model/Entities/LocationType.cs | |
| parent | 1ae9ed6e2aefb323f9959f9ed7a0c7950dd630c6 (diff) | |
| parent | f47ad85011a1251c3fda8a213c0b96dcf46d5e05 (diff) | |
Merge pull request #2373 from Bond-009/warn14
Fix some warnings in MediaBrowser.Model
Diffstat (limited to 'MediaBrowser.Model/Entities/LocationType.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/LocationType.cs | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Entities/LocationType.cs b/MediaBrowser.Model/Entities/LocationType.cs index 52c08b28b..879b31c5c 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 } |
