namespace Elsa.Http;
///
/// Represents the payload of an event, serialized as a secured token.
///
/// The name of the event.
/// The ID of the workflow instance to trigger with the event.
public record EventTokenPayload(string EventName, string WorkflowInstanceId);