mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
import { ArgsType, Field, Int } from 'type-graphql'
|
|
|
|
@ArgsType()
|
|
export default class UnsecureLoginArgs {
|
|
@Field(() => String)
|
|
email: string
|
|
|
|
@Field(() => String)
|
|
password: string
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
publisherId: number
|
|
}
|