resolve todos in core
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
export interface SponsorshipRejectionNotificationPayload {
|
||||
requestId: string;
|
||||
sponsorId: string;
|
||||
entityType: string;
|
||||
entityId: string;
|
||||
tier: string;
|
||||
offeredAmountCents: number;
|
||||
currency: string;
|
||||
rejectedAt: Date;
|
||||
rejectedBy: string;
|
||||
rejectionReason?: string;
|
||||
}
|
||||
|
||||
export interface SponsorshipRejectionNotificationPort {
|
||||
notifySponsorshipRequestRejected(payload: SponsorshipRejectionNotificationPayload): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user