namespace ReC.Application.RecActions.Commands; public record CreateRecActionCommand { public long ProfileId { get; init; } public bool Active { get; init; } = true; public long EndpointId { get; init; } public string Type { get; init; } = "GET"; public string? HeaderQuery { get; init; } public string BodyQuery { get; init; } = "SELECT NULL AS REQUEST_BODY;"; }