namespace AwesomeCopilot.McpServer.Models;
///
/// This represents the data entity for a prompt.
///
public class Prompt
{
///
/// Gets or sets the name of the prompt file.
///
public required string Filename { get; set; }
///
/// Gets or sets the description.
///
public required string Description { get; set; }
///
/// Gets or sets the execution mode.
///
public string? Mode { get; set; }
///
/// Gets or sets the list of tools.
///
public List? Tools { get; set; }
}