jellyfin/Jellyfin.Data/Enums/ScrollDirection.cs
2020-07-17 20:03:17 -04:00

19 lines
403 B
C#

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
}
}