PlanTempusApp/Core/CommandQueries/CommandResponse.cs

16 lines
407 B
C#
Raw Normal View History

2025-03-12 00:13:53 +01:00
namespace PlanTempus.Core.CommandQueries;
public class CommandResponse
{
public Guid RequestId { get; }
public Guid CorrelationId { get; }
public Guid? TransactionId { get; }
public DateTime CreatedAt { get; }
public CommandResponse(Guid correlationId)
{
CorrelationId = correlationId;
RequestId = Guid.CreateVersion7();
CreatedAt = DateTime.Now;
}
}