gradido/backend/src/graphql/args/UnsecureLoginArgs.ts
2021-10-01 21:58:58 +02:00

11 lines
185 B
TypeScript

import { ArgsType, Field } from 'type-graphql'
@ArgsType()
export default class UnsecureLoginArgs {
@Field(() => String)
email: string
@Field(() => String)
password: string
}