Files
ColaFlow/colaflow-api/src/ColaFlow.Domain/Events/EpicCreatedEvent.cs
Yaojia Wang 014d62bcc2 Project Init
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 23:55:18 +01:00

13 lines
262 B
C#

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;