namespace ZymonicGateway.Contracts; public class ZymonicGatewayPluginResponse { public int StatusCode { get; set; } = 202; public string? ContentType { get; set; } = "application/json"; public object? Body { get; set; } }