mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
20 lines
367 B
TypeScript
20 lines
367 B
TypeScript
import { ObjectType, Field } from 'type-graphql'
|
|
|
|
@ObjectType()
|
|
export class CreatePendingCreations {
|
|
constructor() {
|
|
this.success = false
|
|
this.successfulCreation = []
|
|
this.failedCreation = []
|
|
}
|
|
|
|
@Field(() => Boolean)
|
|
success: boolean
|
|
|
|
@Field(() => [String])
|
|
successfulCreation: string[]
|
|
|
|
@Field(() => [String])
|
|
failedCreation: string[]
|
|
}
|