mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-08 01:28:29 -05:00
28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.TableDesigner.Contracts
|
|
{
|
|
/// <summary>
|
|
/// The view model of column store index.
|
|
/// </summary>
|
|
public class ColumnStoreIndexViewModel : ObjectViewModelBase
|
|
{
|
|
|
|
public CheckBoxProperties IsClustered { get; set; } = new CheckBoxProperties();
|
|
|
|
public InputBoxProperties ColumnsDisplayValue { get; set; } = new InputBoxProperties();
|
|
public InputBoxProperties FilterPredicate { get; set; } = new InputBoxProperties();
|
|
|
|
public TableComponentProperties<ColumnStoreIndexedColumnSpecification> Columns { get; set; } = new TableComponentProperties<ColumnStoreIndexedColumnSpecification>();
|
|
}
|
|
|
|
public class ColumnStoreIndexedColumnSpecification
|
|
{
|
|
public DropdownProperties Column { get; set; } = new DropdownProperties();
|
|
|
|
public CheckBoxProperties Ascending { get; set; } = new CheckBoxProperties();
|
|
}
|
|
} |