using EventFlow.Aggregates; namespace Books.Api.Domain.ApiKeys.Events; public class ApiKeyCreatedEvent( string name, string keyHash, string companyId, string createdBy) : AggregateEvent { public string Name { get; } = name; public string KeyHash { get; } = keyHash; public string CompanyId { get; } = companyId; public string CreatedBy { get; } = createdBy; }