mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 11:09:05 +00:00
8 lines
227 B
C#
8 lines
227 B
C#
|
using Microsoft.AspNetCore.Components;
|
||
|
|
||
|
namespace AIStudio.Components.Blocks;
|
||
|
|
||
|
public abstract class EnumSelectionBase : ComponentBase
|
||
|
{
|
||
|
protected static readonly Dictionary<string, object?> USER_INPUT_ATTRIBUTES = new();
|
||
|
}
|