Files
evento/packages/legacy/src/gift/api/dto/create-contribution.dto.ts

9 lines
201 B
TypeScript

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