mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-16 18:01:20 +00:00
11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
import { ArgsType, Field } from 'type-graphql'
|
|
|
|
@ArgsType()
|
|
export class SubscribeNewsletterArguments {
|
|
@Field(() => String)
|
|
email: string
|
|
|
|
@Field(() => String)
|
|
language: string
|
|
}
|