gradido/backend/src/seeds/creation/CreationInterface.ts
2022-03-31 13:48:15 +02:00

10 lines
225 B
TypeScript

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