mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
401 B
TypeScript
18 lines
401 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 SendPasswordResetEmailResponse {
|
|
constructor(json: any) {
|
|
this.state = json.state
|
|
this.msg = json.msg
|
|
}
|
|
|
|
@Field(() => String)
|
|
state: string
|
|
|
|
@Field(() => String)
|
|
msg?: string
|
|
}
|