7 lines
187 B
C#
7 lines
187 B
C#
|
|
namespace PlanTempus.Core.CommandQueries;
|
|||
|
|
|
|||
|
|
public abstract class Command : ICommand
|
|||
|
|
{
|
|||
|
|
public required Guid CorrelationId { get; set; }
|
|||
|
|
public Guid TransactionId { get; set; }
|
|||
|
|
}
|