jellyfin/Jellyfin.Data/Enums/ScrollDirection.cs
2020-07-17 16:11:53 -04:00

19 lines
395 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,
/// <summary>
/// Vertical scrolling direction.
/// </summary>
Vertical
}
}