mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
import { ArgsType, Field, InputType } from 'type-graphql'
|
|
|
|
@InputType()
|
|
@ArgsType()
|
|
export default class ContributionMessageArgs {
|
|
@Field(() => Number)
|
|
contributionId: number
|
|
|
|
@Field(() => String)
|
|
message: string
|
|
}
|