//
// 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
{
///
/// Table component properties
///
public class TableProperties : ComponentPropertiesBase
{
///
/// The column names to be displayed
///
public string[] Columns { get; set; }
///
/// The object type display name of the objects in this table
///
public string ObjectTypeDisplayName { get; set; }
///
/// All properties of the object.
///
public DesignerDataPropertyInfo[] ItemProperties { get; set; }
///
/// The object list.
///
public T[] Data { get; set; }
}
}