diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-07-17 12:48:22 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-07-17 16:11:54 -0400 |
| commit | 9e17db59cd3f4824dfe9e29a3a8b5267249748c0 (patch) | |
| tree | 6fff7137cd61e4e5f8aa69c60e8427bf658c00cc | |
| parent | fcfe22753749e86c4c5a0755fc6fa13ba053faf4 (diff) | |
Reorder HomeSectionType
| -rw-r--r-- | Jellyfin.Data/Enums/HomeSectionType.cs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Jellyfin.Data/Enums/HomeSectionType.cs b/Jellyfin.Data/Enums/HomeSectionType.cs index be764c592..e597c9431 100644 --- a/Jellyfin.Data/Enums/HomeSectionType.cs +++ b/Jellyfin.Data/Enums/HomeSectionType.cs @@ -6,48 +6,48 @@ public enum HomeSectionType { /// <summary> + /// None. + /// </summary> + None = 0, + + /// <summary> /// My Media. /// </summary> - SmallLibraryTiles = 0, + SmallLibraryTiles = 1, /// <summary> /// My Media Small. /// </summary> - LibraryButtons = 1, + LibraryButtons = 2, /// <summary> /// Active Recordings. /// </summary> - ActiveRecordings = 2, + ActiveRecordings = 3, /// <summary> /// Continue Watching. /// </summary> - Resume = 3, + Resume = 4, /// <summary> /// Continue Listening. /// </summary> - ResumeAudio = 4, + ResumeAudio = 5, /// <summary> /// Latest Media. /// </summary> - LatestMedia = 5, + LatestMedia = 6, /// <summary> /// Next Up. /// </summary> - NextUp = 6, + NextUp = 7, /// <summary> /// Live TV. /// </summary> - LiveTv = 7, - - /// <summary> - /// None. - /// </summary> - None = 8 + LiveTv = 8 } } |
