mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 12:31:38 +00:00
changed access to internal
This commit is contained in:
parent
271279ac34
commit
5d8fee94b9
@ -2,7 +2,7 @@ using Lua;
|
||||
|
||||
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel.Layout;
|
||||
|
||||
public sealed class AssistantGrid : AssistantComponentBase
|
||||
internal sealed class AssistantGrid : AssistantComponentBase
|
||||
{
|
||||
public override AssistantComponentType Type => AssistantComponentType.LAYOUT_GRID;
|
||||
public override Dictionary<string, object> Props { get; set; } = new();
|
||||
|
||||
@ -2,7 +2,7 @@ using Lua;
|
||||
|
||||
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel.Layout;
|
||||
|
||||
public sealed class AssistantItem : AssistantComponentBase
|
||||
internal sealed class AssistantItem : AssistantComponentBase
|
||||
{
|
||||
public override AssistantComponentType Type => AssistantComponentType.LAYOUT_ITEM;
|
||||
public override Dictionary<string, object> Props { get; set; } = new();
|
||||
|
||||
@ -2,7 +2,7 @@ using Lua;
|
||||
|
||||
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel.Layout;
|
||||
|
||||
public sealed class AssistantPaper : AssistantComponentBase
|
||||
internal sealed class AssistantPaper : AssistantComponentBase
|
||||
{
|
||||
public override AssistantComponentType Type => AssistantComponentType.LAYOUT_PAPER;
|
||||
public override Dictionary<string, object> Props { get; set; } = new();
|
||||
|
||||
@ -2,7 +2,7 @@ using Lua;
|
||||
|
||||
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel.Layout;
|
||||
|
||||
public sealed class AssistantStack : AssistantComponentBase
|
||||
internal sealed class AssistantStack : AssistantComponentBase
|
||||
{
|
||||
public override AssistantComponentType Type => AssistantComponentType.LAYOUT_STACK;
|
||||
public override Dictionary<string, object> Props { get; set; } = new();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user