SWPCore/Core/CommandQueries/Command.cs

7 lines
No EOL
180 B
C#

namespace SWP.Core.CommandQueries;
public abstract class Command : ICommand
{
public required Guid CorrelationId { get; set; }
public Guid TransactionId { get; set; }
}