using MediatR; namespace ColaFlow.Modules.ProjectManagement.Domain.Events; /// /// Event raised when a Task is removed from a Sprint /// public sealed record TaskRemovedFromSprintEvent(Guid SprintId, Guid TaskId, Guid ProjectId) : INotification;