using ColaFlow.Shared.Kernel.Events; using ColaFlow.Modules.ProjectManagement.Domain.ValueObjects; namespace ColaFlow.Modules.ProjectManagement.Domain.Events; /// /// Event raised when an epic is created /// public sealed record EpicCreatedEvent( EpicId EpicId, string EpicName, ProjectId ProjectId ) : DomainEvent;