7 lines
148 B
C#
7 lines
148 B
C#
using MediatR;
|
|
|
|
namespace IdentityService.Domain.Events
|
|
{
|
|
public record UserBannedDomainEvent(Guid UserId, string Reason) : INotification;
|
|
}
|