// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.DurableTask.Workflows;
///
/// Represents the input envelope for a durable workflow orchestration.
///
/// The type of the workflow input.
internal sealed class DurableWorkflowInput
where TInput : notnull
{
///
/// Gets the workflow input data.
///
public required TInput Input { get; init; }
}