mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
6 lines
215 B
C#
6 lines
215 B
C#
namespace AIStudio.Tools;
|
|
|
|
public readonly record struct ButtonData(string Text, string Icon, Color Color, string Tooltip, Func<Task> AsyncAction) : IButtonData
|
|
{
|
|
public ButtonTypes Type => ButtonTypes.BUTTON;
|
|
} |