jellyfin/Jellyfin.Data/Enums/ScrollDirection.cs

19 lines
403 B
C#
Raw Normal View History

2020-06-30 18:44:41 -07:00
namespace Jellyfin.Data.Enums
2018-12-27 16:27:57 -07:00
{
/// <summary>
2020-06-30 18:44:41 -07:00
/// An enum representing the axis that should be scrolled.
2018-12-27 16:27:57 -07:00
/// </summary>
public enum ScrollDirection
{
/// <summary>
2020-06-30 18:44:41 -07:00
/// Horizontal scrolling direction.
2018-12-27 16:27:57 -07:00
/// </summary>
2020-07-17 17:03:17 -07:00
Horizontal = 0,
2020-02-03 17:49:27 -07:00
2018-12-27 16:27:57 -07:00
/// <summary>
2020-06-30 18:44:41 -07:00
/// Vertical scrolling direction.
2018-12-27 16:27:57 -07:00
/// </summary>
2020-07-17 17:03:17 -07:00
Vertical = 1
2018-12-27 16:27:57 -07:00
}
}