namespace AwesomeCopilot.McpServer.Models; /// /// This represents the result entity to retrieve metadata. /// public class MetadataResult { /// /// Gets or sets the object. /// public Metadata? Metadata { get; set; } /// /// Gets or sets the error message if any error occurs. /// public string? ErrorMessage { get; set; } }