AI-Studio/app/MindWork AI Studio/Components/AssistantAuditTreeItem.cs

11 lines
349 B
C#
Raw Normal View History

2026-04-09 08:01:24 +00:00
namespace AIStudio.Components;
public sealed class AssistantAuditTreeItem : ITreeItem
{
public string Text { get; init; } = string.Empty;
public string Icon { get; init; } = string.Empty;
public string Caption { get; init; } = string.Empty;
public bool Expandable { get; init; }
public bool IsComponent { get; init; } = true;
}