PlanTempusApp/Core/CommandQueries/CommandResponse.cs

16 lines
No EOL
407 B
C#

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;
}
}