mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-23 01:25:42 -05:00
* Make nullable warnings a per file opt-in * Remove unneeded compiler directives * Remove compiler directive for User Data
31 lines
844 B
C#
31 lines
844 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
|
|
|
|
using Microsoft.SqlTools.Hosting.Protocol.Contracts;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
|
|
{
|
|
/// <summary>
|
|
/// Parameters of the edit session dispose request
|
|
/// </summary>
|
|
public class EditDisposeParams : SessionOperationParams
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Object to return upon successful disposal of an edit session
|
|
/// </summary>
|
|
public class EditDisposeResult { }
|
|
|
|
public class EditDisposeRequest
|
|
{
|
|
public static readonly
|
|
RequestType<EditDisposeParams, EditDisposeResult> Type =
|
|
RequestType<EditDisposeParams, EditDisposeResult>.Create("edit/dispose");
|
|
}
|
|
}
|