AI-Studio/app/MindWork AI Studio/Tools/PluginSystem/PluginMetadata.cs

59 lines
1.6 KiB
C#
Raw Normal View History

2025-03-29 17:40:17 +00:00
namespace AIStudio.Tools.PluginSystem;
2026-02-16 14:25:52 +00:00
public sealed class PluginMetadata(PluginBase plugin, string localPath, bool isManagedByConfigServer = false) : IAvailablePlugin
2025-03-29 17:40:17 +00:00
{
#region Implementation of IPluginMetadata
/// <inheritdoc />
public string IconSVG { get; } = plugin.IconSVG;
/// <inheritdoc />
public PluginType Type { get; } = plugin.Type;
/// <inheritdoc />
public Guid Id { get; } = plugin.Id;
/// <inheritdoc />
public string Name { get; } = plugin.Name;
/// <inheritdoc />
public string Description { get; } = plugin.Description;
/// <inheritdoc />
public PluginVersion Version { get; } = plugin.Version;
/// <inheritdoc />
public string[] Authors { get; } = plugin.Authors;
/// <inheritdoc />
public string SupportContact { get; } = plugin.SupportContact;
/// <inheritdoc />
public string SourceURL { get; } = plugin.SourceURL;
/// <inheritdoc />
public PluginCategory[] Categories { get; } = plugin.Categories;
/// <inheritdoc />
public PluginTargetGroup[] TargetGroups { get; } = plugin.TargetGroups;
/// <inheritdoc />
public bool IsMaintained { get; } = plugin.IsMaintained;
/// <inheritdoc />
public string DeprecationMessage { get; } = plugin.DeprecationMessage;
/// <inheritdoc />
public bool IsInternal { get; } = plugin.IsInternal;
#endregion
#region Implementation of IAvailablePlugin
public string LocalPath { get; } = localPath;
2026-02-16 14:25:52 +00:00
public bool IsManagedByConfigServer { get; } = isManagedByConfigServer;
#endregion
2026-02-16 14:25:52 +00:00
}