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