Project Init
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
12
colaflow-api/src/ColaFlow.Domain/Events/EpicCreatedEvent.cs
Normal file
12
colaflow-api/src/ColaFlow.Domain/Events/EpicCreatedEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using ColaFlow.Domain.ValueObjects;
|
||||
|
||||
namespace ColaFlow.Domain.Events;
|
||||
|
||||
/// <summary>
|
||||
/// Event raised when an epic is created
|
||||
/// </summary>
|
||||
public sealed record EpicCreatedEvent(
|
||||
EpicId EpicId,
|
||||
string EpicName,
|
||||
ProjectId ProjectId
|
||||
) : DomainEvent;
|
||||
Reference in New Issue
Block a user