14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import { Field, InputType } from '@nestjs/graphql';
|
|
import { IsBoolean } from 'class-validator';
|
|
|
|
@InputType()
|
|
export class ChangeNotificationSettingsInput {
|
|
@Field(() => Boolean)
|
|
@IsBoolean()
|
|
public siteNotifications: boolean;
|
|
|
|
@Field(() => Boolean)
|
|
@IsBoolean()
|
|
public telegramNotifications: boolean;
|
|
}
|