IM/backend/IM_API/Domain/Events/GroupInviteEvent.cs
2026-02-12 21:59:08 +08:00

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; }
}
}