mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 11:21:38 +00:00
7 lines
212 B
C#
7 lines
212 B
C#
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
|
|
|
|
public class AssistantDropdownItem
|
|
{
|
|
public string Value { get; set; } = string.Empty;
|
|
public string Display { get; set; } = string.Empty;
|
|
} |