Files

15 lines
280 B
C#

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