mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 11:21:38 +00:00
7 lines
295 B
C#
7 lines
295 B
C#
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
|
|
|
|
public class PropSpec(IEnumerable<string> required, IEnumerable<string> optional)
|
|
{
|
|
public IReadOnlyList<string> Required { get; } = required.ToArray();
|
|
public IReadOnlyList<string> Optional { get; } = optional.ToArray();
|
|
} |