12 lines
332 B
TypeScript
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
|
|
}
|