2025-07-21 13:10:40 +00:00
|
|
|
|
namespace AIStudio.Tools.PluginSystem.Assistants.DataModel;
|
2025-07-21 12:38:08 +00:00
|
|
|
|
|
|
|
|
|
|
public class AssistantDropdownItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Value { get; set; } = string.Empty;
|
|
|
|
|
|
public string Display { get; set; } = string.Empty;
|
|
|
|
|
|
}
|