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