036953f3ff
1. Using directive should appear within a namespace declaration 2. Use trailing comma in multi-line initializers
22 lines
508 B
C#
22 lines
508 B
C#
// <copyright file="ScrollDirection.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Database.Implementations.Enums;
|
|
|
|
/// <summary>
|
|
/// An enum representing the axis that should be scrolled.
|
|
/// </summary>
|
|
public enum ScrollDirection
|
|
{
|
|
/// <summary>
|
|
/// Horizontal scrolling direction.
|
|
/// </summary>
|
|
Horizontal = 0,
|
|
|
|
/// <summary>
|
|
/// Vertical scrolling direction.
|
|
/// </summary>
|
|
Vertical = 1,
|
|
}
|