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