diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-06-30 21:44:41 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-07-17 16:11:53 -0400 |
| commit | ab396225eaf486932fdb2f23eefa1cbfecbb27f4 (patch) | |
| tree | b225cd9617e14ae1f0386f9ff8aa85a8a433e424 /Jellyfin.Data/Enums/HomeSectionType.cs | |
| parent | 175e7b45e56fb97b0f9bdddd99c195af3ecabcc6 (diff) | |
Migrate Display Preferences to EF Core
Diffstat (limited to 'Jellyfin.Data/Enums/HomeSectionType.cs')
| -rw-r--r-- | Jellyfin.Data/Enums/HomeSectionType.cs | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/Jellyfin.Data/Enums/HomeSectionType.cs b/Jellyfin.Data/Enums/HomeSectionType.cs new file mode 100644 index 000000000..be764c592 --- /dev/null +++ b/Jellyfin.Data/Enums/HomeSectionType.cs @@ -0,0 +1,53 @@ +namespace Jellyfin.Data.Enums +{ + /// <summary> + /// An enum representing the different options for the home screen sections. + /// </summary> + public enum HomeSectionType + { + /// <summary> + /// My Media. + /// </summary> + SmallLibraryTiles = 0, + + /// <summary> + /// My Media Small. + /// </summary> + LibraryButtons = 1, + + /// <summary> + /// Active Recordings. + /// </summary> + ActiveRecordings = 2, + + /// <summary> + /// Continue Watching. + /// </summary> + Resume = 3, + + /// <summary> + /// Continue Listening. + /// </summary> + ResumeAudio = 4, + + /// <summary> + /// Latest Media. + /// </summary> + LatestMedia = 5, + + /// <summary> + /// Next Up. + /// </summary> + NextUp = 6, + + /// <summary> + /// Live TV. + /// </summary> + LiveTv = 7, + + /// <summary> + /// None. + /// </summary> + None = 8 + } +} |
