mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
20 lines
405 B
TypeScript
20 lines
405 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
/*
|
|
import { ObjectType, Field } from 'type-graphql'
|
|
|
|
@ObjectType()
|
|
export class GdtSumPerEmail {
|
|
constructor(email: string, summe: number) {
|
|
this.email = email
|
|
this.summe = summe
|
|
}
|
|
|
|
@Field(() => String)
|
|
email: string
|
|
|
|
@Field(() => Number)
|
|
summe: number
|
|
}
|
|
*/
|