jellyfin/Jellyfin.Data/Enums/ScrollDirection.cs

19 lines
403 B
C#
Raw Normal View History

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