aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/ScrollDirection.cs
blob: 9595eb4904ba294da41a2ceb98e440e1061813f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Data.Enums
{
    /// <summary>
    /// An enum representing the axis that should be scrolled.
    /// </summary>
    public enum ScrollDirection
    {
        /// <summary>
        /// Horizontal scrolling direction.
        /// </summary>
        Horizontal = 0,

        /// <summary>
        /// Vertical scrolling direction.
        /// </summary>
        Vertical = 1
    }
}