9 lines
221 B
C#
9 lines
221 B
C#
|
|
using EventFlow.Aggregates;
|
||
|
|
|
||
|
|
namespace Books.Api.Domain.ApiKeys.Events;
|
||
|
|
|
||
|
|
public class ApiKeyRevokedEvent(string revokedBy) : AggregateEvent<ApiKeyAggregate, ApiKeyId>
|
||
|
|
{
|
||
|
|
public string RevokedBy { get; } = revokedBy;
|
||
|
|
}
|