AI-Studio/app/MindWork AI Studio/Components/AssistantAuditTreeItem.cs
2026-03-26 22:34:39 +01:00

11 lines
349 B
C#

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;
}