mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
20 lines
308 B
TypeScript
20 lines
308 B
TypeScript
import { ObjectType, Field } from 'type-graphql'
|
|
|
|
@ObjectType()
|
|
export class UpdatePendingCreation {
|
|
@Field(() => Date)
|
|
date: Date
|
|
|
|
@Field(() => String)
|
|
memo: string
|
|
|
|
@Field(() => Number)
|
|
amount: number
|
|
|
|
@Field(() => Number)
|
|
moderator: number
|
|
|
|
@Field(() => [Number])
|
|
creation: number[]
|
|
}
|