gradido/database/src/seeds/creation/CreationInterface.ts
2025-11-28 19:01:28 +01:00

10 lines
229 B
TypeScript

export interface CreationInterface {
email: string
amount: number
memo: string
contributionDate: string
confirmed?: boolean
// number of months to move the confirmed creation to the past
moveCreationDate?: number
}