// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Extensions.AI.Agents.Runtime;
///
/// Base class for read operations that query an actor's internal state.
///
public abstract class ActorStateReadOperation : ActorReadOperation
{
/// Prevent external derivations.
private protected ActorStateReadOperation()
{
}
}