// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Extensions.AI.Agents.Runtime;
///
/// Base class for write operations that modify an actor's internal state.
///
///
/// This abstract class serves as the foundation for all actor state write operation types.
/// Each concrete implementation represents a specific type of state modification operation,
/// such as setting or removing key-value pairs in an actor's state.
///
public abstract class ActorStateWriteOperation : ActorWriteOperation
{
/// Prevent external derivations.
private protected ActorStateWriteOperation()
{
}
}