mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
import { ArgsType, Field } from 'type-graphql'
|
|
|
|
@ArgsType()
|
|
export default class SubscribeNewsletterArgs {
|
|
@Field(() => String)
|
|
email: string
|
|
|
|
@Field(() => String)
|
|
language: string
|
|
}
|