SWPCore/Core/CommandQueries/Command.cs

7 lines
180 B
C#
Raw Normal View History

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