mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-24 09:35:39 -05:00
16 lines
571 B
C#
16 lines
571 B
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using Microsoft.SqlTools.Hosting.Protocol.Contracts;
|
|
|
|
using Microsoft.SqlTools.ServiceLayer.Utility;
|
|
namespace Microsoft.SqlTools.ServiceLayer.SqlProjects.Contracts
|
|
{
|
|
public class DeleteSqlObjectScriptRequest
|
|
{
|
|
public static readonly RequestType<SqlProjectScriptParams, ResultStatus> Type = RequestType<SqlProjectScriptParams, ResultStatus>.Create("sqlProjects/deleteSqlObjectScript");
|
|
}
|
|
}
|