//
// 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.Hosting.Extensibility
{
///
/// Standard Metadata needed for extensions.
///
public interface IStandardMetadata
{
///
/// Extension version. Should be in the format "1.0.0.0" or similar
///
string Version { get; }
///
/// Unique Id used to identify the export.
///
string Id { get; }
///
/// Optional Display name describing the export type
///
string DisplayName { get; }
}
}