import { type DomainEvent } from '@modules/shared'; export class PhoneLoginOtpRequestedEvent implements DomainEvent { readonly eventName = 'user.phone_login_otp_requested'; readonly occurredAt = new Date(); constructor( public readonly aggregateId: string, public readonly phone: string, public readonly otpCode: string, ) {} }