You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Jellyfin.Data/Enums/SortOrder.cs

19 lines
365 B

namespace Jellyfin.Data.Enums
6 years ago
{
/// <summary>
/// An enum representing the sorting order.
6 years ago
/// </summary>
public enum SortOrder
{
/// <summary>
/// Sort in increasing order.
6 years ago
/// </summary>
Ascending,
6 years ago
/// <summary>
/// Sort in decreasing order.
6 years ago
/// </summary>
Descending
}
}