//
// 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 about Code Lens that the server supports
///
public class CodeLensOptions
{
///
/// Code lens has a resolve provider, as well
/// TODO: WTF does this mean??
///
public bool? ResolveProvider { get; set; }
}
}