11 lines
303 B
C#
11 lines
303 B
C#
namespace IM_API.Domain.Events
|
|
{
|
|
public record GroupInviteEvent : DomainEvent
|
|
{
|
|
public override string EventType => "IM.GROUPS_INVITE_ADD";
|
|
public required List<int> Ids { get; init; }
|
|
public int GroupId { get; init; }
|
|
public int UserId { get; init; }
|
|
}
|
|
}
|