//
// 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
{
///
/// Capabilities specific to textDocument/publishDiagnostics requests
///
public class PublishDignosticsCapabilities
{
///
/// Whether the client accepts diagnostics with related information
///
public bool? RelatedInformation { get; set; }
}
}