2025-05-14 21:45:16 +02:00

8 lines
157 B
TypeScript

import { InputType, Field } from 'type-graphql';
@InputType()
export class ChangeStatusInput {
@Field({ nullable: true })
customMessage?: string;
}