PlanTempusApp/PlanTempus.Core/CommandQueries/ICommand.cs

7 lines
149 B
C#
Raw Normal View History

2025-03-12 00:13:53 +01:00
namespace PlanTempus.Core.CommandQueries;
public interface ICommand
{
Guid CorrelationId { get; set; }
Guid TransactionId { get; set; }
}