mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-09 19:41:37 +00:00
9 lines
332 B
C#
9 lines
332 B
C#
|
|
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
|
|||
|
|
|
|||
|
|
public sealed class AssistantDropdownItem
|
|||
|
|
{
|
|||
|
|
public string Value { get; set; } = string.Empty;
|
|||
|
|
public string Display { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public static AssistantDropdownItem Default() => new() { Value = string.Empty, Display = string.Empty};
|
|||
|
|
}
|