Created a UserAdmin model that represents the Users for the Admin area.

This commit is contained in:
ogerly 2021-11-23 12:14:20 +01:00
parent 2e7c35aab6
commit c9d6b88dd0

View File

@ -0,0 +1,14 @@
import { ObjectType, Field, Int } from 'type-graphql'
import { KlickTipp } from './KlickTipp'
@ObjectType()
export class UserAdmin {
@Field(() => String)
email: string
@Field(() => String)
firstName: string
@Field(() => String)
lastName: string
}