mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 09:59:48 -05:00
* unify requests-wip * wip * unify api * fix test * add credential handler * fix credential handler issue. * generic type update * fix scripting for user
13 lines
344 B
C#
13 lines
344 B
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
#nullable disable
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement
|
|
{
|
|
public abstract class SqlObjectViewInfo
|
|
{
|
|
public SqlObject ObjectInfo { get; set; }
|
|
}
|
|
} |