File: Model\GenAI\ToolDefinitionViewModel.cs
Web Access
Project: src\src\Aspire.Dashboard\Aspire.Dashboard.csproj (Aspire.Dashboard)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Diagnostics;
 
namespace Aspire.Dashboard.Model.GenAI;
 
[DebuggerDisplay("ToolDefinition = {ToolDefinition}, Expanded = {Expanded}")]
public class ToolDefinitionViewModel
{
    public required ToolDefinition ToolDefinition { get; init; }
    public bool Expanded { get; set; }
}