namespace AIStudio.Tools.PluginSystem;
///
/// Represents complex content from a configuration plugin that is read live from
/// running plugins and is not persisted to the settings data model.
///
public interface ILivePluginContent
{
///
/// The stable ID of the live plugin content.
///
public string Id { get; }
///
/// The ID of the enterprise configuration plugin that provides this content.
///
public Guid EnterpriseConfigurationPluginId { get; }
}