aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/ScrollDirection.cs
blob: 29c50e2c4e067be28fee350d6c3a0d0a1ec2bd18 (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
    }
}