ohmyform-api/src/dto/form/self.notifications.input.ts
Michael Schramm 414bc04782 updates
2020-05-29 17:09:19 +02:00

12 lines
332 B
TypeScript

import { Field, InputType } from '@nestjs/graphql';
import { AbstractNotificationInput } from './abstract.notification.input';
@InputType()
export class SelfNotificationsInput extends AbstractNotificationInput {
@Field({ nullable: true })
readonly fromField?: string
@Field({ nullable: true })
readonly toEmail?: string
}