//
// 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.DataProtocol.Contracts.ClientCapabilities.TextDocument
{
///
/// Defines which synchonization capabilities the client supports
///
public class SynchronizationCapabilities : DynamicRegistrationCapability
{
///
/// Whether the client supports sending "will save" notifications
///
public bool? WillSave { get; set; }
///
/// Whether the client supports sending "did save" notifications
///
public bool? DidSave { get; set; }
}
}