namespace Jellyfin.Data.Enums { /// /// An enum representing the sorting order. /// public enum SortOrder { /// /// Sort in increasing order. /// Ascending = 0, /// /// Sort in decreasing order. /// Descending = 1 } }