PlanTempusApp/Core/CommandQueries/Command.cs

7 lines
187 B
C#
Raw Normal View History

2025-03-12 00:13:53 +01:00
namespace PlanTempus.Core.CommandQueries;
public abstract class Command : ICommand
{
public required Guid CorrelationId { get; set; }
public Guid TransactionId { get; set; }
}