//
// 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
{
///
/// Parameters for the revert row request
///
public class EditRevertRowParams : RowOperationParams
{
}
///
/// Parameters to return upon successful revert of a row
///
public class EditRevertRowResult
{
}
public class EditRevertRowRequest
{
public static readonly
RequestType Type =
RequestType.Create("edit/revertRow");
}
}