jellyfin/Jellyfin.Data/Enums/ScrollDirection.cs

19 lines
403 B
C#
Raw Normal View History

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