gradido/backend/src/graphql/arg/SubscribeNewsletterArgs.ts

11 lines
191 B
TypeScript

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