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