using System;
namespace Svrnty.CQRS.Sagas.Abstractions;
///
/// Marker interface for saga data. All saga data classes must implement this interface.
///
public interface ISagaData
{
///
/// Correlation ID for tracing the saga across services.
///
Guid CorrelationId { get; set; }
}