using Elsa.Workflows.Core.State;
using Microsoft.AspNetCore.Http;
namespace Elsa.Http.Models;
///
/// Provides context about the faulted workflow.
///
/// The HTTP context.
/// The faulted workflow state.
/// The cancellation token.
public record HttpEndpointFaultContext(HttpContext HttpContext, WorkflowState WorkflowState, CancellationToken CancellationToken);