mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
17 lines
330 B
C#
17 lines
330 B
C#
|
|
namespace MediaBrowser.Model.Entities
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Enum ScrollDirection
|
||
|
|
/// </summary>
|
||
|
|
public enum ScrollDirection
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The horizontal
|
||
|
|
/// </summary>
|
||
|
|
Horizontal,
|
||
|
|
/// <summary>
|
||
|
|
/// The vertical
|
||
|
|
/// </summary>
|
||
|
|
Vertical
|
||
|
|
}
|
||
|
|
}
|