namespace AIStudio.Components; /// /// Represents an assistant block which belongs to an assistant category. /// /// /// 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. /// public interface IAssistantCategoryMember { /// /// Gets whether the assistant is visible right now. /// bool IsVisible { get; } }