7 lines
147 B
C#
7 lines
147 B
C#
using MediatR;
|
|
|
|
namespace GroupService.Domain.Events
|
|
{
|
|
public record GroupCreateDomainEvent(Domain.Entities.Group Group) : INotification;
|
|
}
|