mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-05-03 09:39:47 +00:00
8 lines
336 B
C#
8 lines
336 B
C#
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
public readonly record struct InternalPluginData(PluginType Type, Guid Id, string ShortName)
|
|
{
|
|
public string ResourcePath => $"{this.Type.GetDirectory()}/{this.ShortName.ToLowerInvariant()}-{this.Id}";
|
|
|
|
public string ResourceName => $"{this.ShortName.ToLowerInvariant()}-{this.Id}";
|
|
} |