9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
export class CreateContributionDto {
|
|
giftId!: string;
|
|
contributorName!: string;
|
|
contributorEmail?: string;
|
|
amount!: number;
|
|
type?: 'individual' | 'group';
|
|
metadata?: Record<string, any>;
|
|
}
|