namespace ZymonicGateway.Contracts; public class ZymonicGatewayPluginRequest { public IServiceProvider? Services { get; set; } public string Method { get; set; } = ""; public string Path { get; set; } = ""; public string? QueryString { get; set; } public Dictionary Headers { get; set; } = new(); public Dictionary Configuration { get; set; } = new(); public string? Body { get; set; } }