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

7 lines
147 B
C#

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