using System.Collections.Generic; namespace AxCopilot.Handlers; public class JsonSkillRequest { public string Method { get; set; } = "GET"; public string Url { get; set; } = ""; public Dictionary? Headers { get; set; } public object? Body { get; set; } }