mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 18:32:12 +00:00
16 lines
509 B
C#
16 lines
509 B
C#
|
|
namespace AIStudio.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Represents an assistant block which belongs to an assistant category.
|
||
|
|
/// </summary>
|
||
|
|
/// <remarks>
|
||
|
|
/// Assistant blocks are generic over their settings dialog. This interface gives the category block
|
||
|
|
/// access to their visibility without the need to know that type parameter.
|
||
|
|
/// </remarks>
|
||
|
|
public interface IAssistantCategoryMember
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets whether the assistant is visible right now.
|
||
|
|
/// </summary>
|
||
|
|
bool IsVisible { get; }
|
||
|
|
}
|