//
// 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.Common
{
public class WorkspaceFolder
{
///
/// Name of the workspace folder. Defaults to 's basename
///
public string Name { get; set; }
///
/// Associated URI for this workspace folder
///
public string Uri { get; set; }
}
}