namespace Jellyfin.Data.Enums { /// /// An enum representing the axis that should be scrolled. /// public enum ScrollDirection { /// /// Horizontal scrolling direction. /// Horizontal = 0, /// /// Vertical scrolling direction. /// Vertical = 1 } }