PlanTempusApp/PlanTempus.Core/CommandQueries/ICommand.cs
Janus C. H. Knudsen 7fc1ae0650 WIP
2026-01-10 20:39:17 +01:00

7 lines
No EOL
149 B
C#

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