//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
{
///
/// Abstract class for parameters that require an OwnerUri and a RowId
///
public abstract class RowOperationParams : SessionOperationParams
{
///
/// Internal ID of the row to revert
///
public long RowId { get; set; }
}
}