//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using Microsoft.SqlTools.Extensibility;
namespace Microsoft.SqlTools.ResourceProvider.Core.Extensibility
{
///
/// An interface to be implemented by any class that needs to be exportable
///
public interface IExportable : IComposableService
{
///
/// The metadata assigned to the exportable
///
IExportableMetadata Metadata
{
set; get;
}
///
/// Returns the status of the exportable
///
ExportableStatus Status
{
get;
}
}
}