mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 09:01:18 +03:00
Add project files.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using PracticeCalendar.Domain.Common;
|
||||
using PracticeCalendar.Domain.Entities;
|
||||
|
||||
namespace PracticeCalendar.Domain.Events
|
||||
{
|
||||
public sealed class AttendeeAddedEvent : DomainEventBase
|
||||
{
|
||||
public AttendeeAddedEvent(PracticeEvent eventAggregate, Attendee addedAtendee)
|
||||
{
|
||||
EventAggregate = eventAggregate;
|
||||
AddedAtendee = addedAtendee;
|
||||
}
|
||||
|
||||
public PracticeEvent EventAggregate { get; }
|
||||
public Attendee AddedAtendee { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user