using AIStudio.Tools.PluginSystem;
namespace AIStudio.Tools.Services;
///
/// A provider or data source a configuration plugin brings, and where it sends data to.
///
/// The kind of configuration object.
/// The name the configuration gives it.
/// The host of a self-hosted destination, or the name of the cloud provider.
public sealed record ConfigurationPluginDestination(PluginConfigurationObjectType Type, string Name, string Endpoint);