twitch-clone/backend/src/module/notification/inputs/change-notification-settings.input.ts
2025-07-30 05:23:26 +03:00

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;
}