Files
IM_NEW/GroupService.Domain/Events/GroupMemberLeftDomainEvent.cs
T

8 lines
175 B
C#

using GroupService.Domain.Entities;
using MediatR;
namespace GroupService.Domain.Events
{
public record GroupMemberLeftDomainEvent(GroupMember Member) : INotification;
}