mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
29 lines
538 B
TypeScript
29 lines
538 B
TypeScript
import { ArgsType, Field, Int } from 'type-graphql'
|
|
|
|
@ArgsType()
|
|
export class UpdateUserInfosArgs {
|
|
@Field({ nullable: true })
|
|
firstName?: string
|
|
|
|
@Field({ nullable: true })
|
|
lastName?: string
|
|
|
|
@Field({ nullable: true })
|
|
language?: string
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
publisherId?: number | null
|
|
|
|
@Field({ nullable: true })
|
|
password?: string
|
|
|
|
@Field({ nullable: true })
|
|
passwordNew?: string
|
|
|
|
@Field({ nullable: true })
|
|
hideAmountGDD?: boolean
|
|
|
|
@Field({ nullable: true })
|
|
hideAmountGDT?: boolean
|
|
}
|