mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 18:52:14 +00:00
11 lines
334 B
C#
11 lines
334 B
C#
namespace AIStudio.Settings.DataModel;
|
|
|
|
public sealed class DataTools
|
|
{
|
|
public Dictionary<string, Dictionary<string, string>> Settings { get; set; } = [];
|
|
|
|
public Dictionary<string, HashSet<string>> DefaultToolIdsByComponent { get; set; } = [];
|
|
|
|
public HashSet<string> VisibleToolSelectionComponents { get; set; } = [];
|
|
}
|