mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-12 23:35:50 +00:00
14 lines
350 B
TypeScript
14 lines
350 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 UpdateUserInfosResponse {
|
|
constructor(json: any) {
|
|
this.validValues = json.valid_values
|
|
}
|
|
|
|
@Field(() => Number)
|
|
validValues: number
|
|
}
|