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