mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { Entity, BaseEntity } from 'typeorm'
|
|
import { ObjectType, Field } from 'type-graphql'
|
|
|
|
@Entity()
|
|
@ObjectType()
|
|
export class BaseResponse extends BaseEntity {
|
|
@Field(() => Boolean)
|
|
success: boolean
|
|
}
|