csharp/Microsoft.Azure.Databricks.Client/Models/ListOrder.cs (7 lines of code) (raw):
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Azure.Databricks.Client.Models;
/// <summary>
/// A generic ordering enum for list-based queries.
/// </summary>
public enum ListOrder
{
/// <summary>
/// Descending order
/// </summary>
DESC,
/// <summary>
/// Ascending order
/// </summary>
ASC
}