mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-15 09:35:37 -05:00
* Create ServiceHost a service-specific class * Renaming hosting namespace * Rename credentials namespace * Fix namespaces
31 lines
864 B
C#
31 lines
864 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;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
|
|
{
|
|
/// <summary>
|
|
/// Parameters for identifying a row to mark for deletion
|
|
/// </summary>
|
|
public class EditDeleteRowParams : RowOperationParams
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parameters to return upon successfully adding row delete to update cache
|
|
/// </summary>
|
|
public class EditDeleteRowResult
|
|
{
|
|
}
|
|
|
|
public class EditDeleteRowRequest
|
|
{
|
|
public static readonly
|
|
RequestType<EditDeleteRowParams, EditDeleteRowResult> Type =
|
|
RequestType<EditDeleteRowParams, EditDeleteRowResult>.Create("edit/deleteRow");
|
|
}
|
|
}
|