gradido/backend/src/graphql/arg/ContributionMessageArgs.ts
2023-03-31 12:48:09 +02:00

12 lines
217 B
TypeScript

import { ArgsType, Field, Int, InputType } from 'type-graphql'
@InputType()
@ArgsType()
export class ContributionMessageArgs {
@Field(() => Int)
contributionId: number
@Field(() => String)
message: string
}