mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 15:01:23 +03:00
18 lines
493 B
C#
18 lines
493 B
C#
using PracticeCalendar.Domain.Common;
|
|
using PracticeCalendar.Domain.Entities.PracticeEvent;
|
|
|
|
namespace PracticeCalendar.Domain.Events
|
|
{
|
|
public sealed class AttendeeDeclinedEvent : DomainEventBase
|
|
{
|
|
public AttendeeDeclinedEvent(PracticeEvent practiceEvent, Attendee attendee)
|
|
{
|
|
PracticeEvent = practiceEvent;
|
|
Attendee = attendee;
|
|
}
|
|
|
|
public PracticeEvent PracticeEvent { get; }
|
|
public Attendee Attendee { get; }
|
|
}
|
|
}
|