mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import { ObjectType, Field } from 'type-graphql'
|
|
|
|
@ObjectType()
|
|
export class KlickTipp {
|
|
constructor(newsletterState: boolean) {
|
|
this.newsletterState = newsletterState
|
|
}
|
|
|
|
@Field(() => Boolean)
|
|
newsletterState: boolean
|
|
}
|