// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
///
/// Represents a placeholder entry for an , identified by a unique ID.
///
/// The unique identifier for the placeholder registration.
public record ExecutorPlaceholder(string Id)
: ExecutorBinding(Id,
null,
typeof(Executor),
Id)
{
///
public override bool SupportsConcurrentSharedExecution => false;
///
public override bool SupportsResetting => false;
///
public override bool IsSharedInstance => false;
}