15 lines
342 B
C#
15 lines
342 B
C#
using System;
|
|
|
|
namespace Svrnty.CQRS.Sagas.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Marker interface for saga data. All saga data classes must implement this interface.
|
|
/// </summary>
|
|
public interface ISagaData
|
|
{
|
|
/// <summary>
|
|
/// Correlation ID for tracing the saga across services.
|
|
/// </summary>
|
|
Guid CorrelationId { get; set; }
|
|
}
|