Files
IM_NEW/GroupService.Domain/Events/AllMembersBannedDomainEvent.cs
T
2026-04-30 21:08:28 +08:00

8 lines
172 B
C#

using GroupService.Domain.Entities;
using MediatR;
namespace GroupService.Domain.Events
{
public record AllMembersBannedDomainEvent(Group Group) : INotification;
}