// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.DurableTask.Workflows;
///
/// Output payload from activity execution, containing the result and other metadata.
///
internal sealed class DurableActivityOutput
{
///
/// Gets or sets the serialized result of the activity.
///
public string? Result { get; set; }
///
/// Gets or sets the collection of messages that have been sent.
///
public List SentMessages { get; set; } = [];
}