mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-09 19:41:37 +00:00
11 lines
349 B
C#
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;
|
||
|
|
}
|