mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-27 01:50:53 +01:00
Migrate Display Preferences to EF Core
This commit is contained in:
18
Jellyfin.Data/Enums/ScrollDirection.cs
Normal file
18
Jellyfin.Data/Enums/ScrollDirection.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user