jellyfin/Jellyfin.Data/Enums/ScrollDirection.cs

19 lines
403 B
C#
Raw Normal View History

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