mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
import { Decimal } from 'decimal.js-light'
|
|
import { ArgsType, Field, InputType } from 'type-graphql'
|
|
|
|
@InputType()
|
|
@ArgsType()
|
|
export class AdminCreateContributionArgs {
|
|
@Field(() => String)
|
|
email: string
|
|
|
|
@Field(() => Decimal)
|
|
amount: Decimal
|
|
|
|
@Field(() => String)
|
|
memo: string
|
|
|
|
@Field(() => String)
|
|
creationDate: string
|
|
}
|