//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
#nullable disable
using Microsoft.SqlTools.ServiceLayer.Workspace.Contracts;
namespace Microsoft.SqlTools.ServiceLayer.LanguageServices
{
///
/// /// Result object for PeekDefinition
///
public class DefinitionResult
{
///
/// True, if definition error occured
///
public bool IsErrorResult;
///
/// Error message, if any
///
public string Message { get; set; }
///
/// Location object representing the definition script file
///
public Location[] Locations;
}
}