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