9 lines
271 B
TypeScript
9 lines
271 B
TypeScript
export declare class CreateContributionDto {
|
|
giftId: string;
|
|
contributorName: string;
|
|
contributorEmail?: string;
|
|
amount: number;
|
|
type?: 'individual' | 'group';
|
|
metadata?: Record<string, any>;
|
|
}
|
|
//# sourceMappingURL=create-contribution.dto.d.ts.map
|