7 lines
142 B
C#
7 lines
142 B
C#
|
|
namespace SWP.Core.CommandQueries;
|
|||
|
|
|
|||
|
|
public interface ICommand
|
|||
|
|
{
|
|||
|
|
Guid CorrelationId { get; set; }
|
|||
|
|
Guid TransactionId { get; set; }
|
|||
|
|
}
|