gradido/backend/src/seeds/contributionLink/ContributionLinkInterface.ts
2022-06-14 19:19:12 +02:00

8 lines
130 B
TypeScript

export interface ContributionLinkInterface {
amount: number
name: string
memo: string
validFrom?: Date
validTo?: Date
}