//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using System;
namespace Microsoft.SqlTools.ServiceLayer.TableDesigner.Contracts
{
///
/// Base class for component properties
///
public abstract class ComponentPropertiesBase
{
public ComponentPropertiesBase()
{
this.Enabled = true;
}
public string Title { get; set; }
public string AriaLabel { get; set; }
public Nullable Width { get; set; }
public bool Enabled { get; set; }
}
}