mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-28 21:01:10 +03:00
refactoring and integration tests
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using PracticeCalendar.Domain.Common;
|
||||
using PracticeCalendar.Domain.Entities;
|
||||
|
||||
namespace PracticeCalendar.Domain.Events
|
||||
{
|
||||
public sealed class AttendeeAcceptedEvent : DomainEventBase
|
||||
{
|
||||
public AttendeeAcceptedEvent(PracticeEvent practiceEvent, Attendee attendee)
|
||||
{
|
||||
PracticeEvent = practiceEvent;
|
||||
Attendee = attendee;
|
||||
}
|
||||
|
||||
public PracticeEvent PracticeEvent { get; }
|
||||
public Attendee Attendee { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user