namespace Jellyfin.Data.Enums { /// /// An enum representing the different options for the home screen sections. /// public enum HomeSectionType { /// /// My Media. /// SmallLibraryTiles = 0, /// /// My Media Small. /// LibraryButtons = 1, /// /// Active Recordings. /// ActiveRecordings = 2, /// /// Continue Watching. /// Resume = 3, /// /// Continue Listening. /// ResumeAudio = 4, /// /// Latest Media. /// LatestMedia = 5, /// /// Next Up. /// NextUp = 6, /// /// Live TV. /// LiveTv = 7, /// /// None. /// None = 8 } }