//
// 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.ServerCapabilities
{
///
/// Options the server support for document links
///
public class DocumentLinkOptions
{
///
/// Document links have a resolve provider, as well
/// TODO: WTF does this mean?
///
public bool? ResolveProvider { get; set; }
}
}