SWPCore/Core/CommandQueries/ICommand.cs

7 lines
142 B
C#
Raw Permalink Normal View History

namespace SWP.Core.CommandQueries;
public interface ICommand
{
Guid CorrelationId { get; set; }
Guid TransactionId { get; set; }
}