csharp/Microsoft.Azure.Databricks.Client/Models/ViewType.cs (7 lines of code) (raw):
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Azure.Databricks.Client.Models;
public enum ViewType
{
/// <summary>
/// Notebook view item
/// </summary>
NOTEBOOK,
/// <summary>
/// Dashboard view item
/// </summary>
DASHBOARD
}