Files
sqltoolsservice/src/Microsoft.SqlTools.ServiceLayer/TableDesigner/Contracts/DesignerDataPropertyWithTabInfo.cs

18 lines
549 B
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>
/// Represents a component/property with tab info in the table designer
/// </summary>
public class DesignerDataPropertyWithTabInfo : DesignerDataPropertyInfo
{
/// <summary>
/// The tab of the property
/// </summary>
public string Tab { get; set; }
}
}