mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
import { Field, InputType } from 'type-graphql'
|
|
|
|
@InputType()
|
|
export class OpenConnectionCallbackArgs {
|
|
@Field(() => String)
|
|
oneTimeCode: string
|
|
|
|
@Field(() => String)
|
|
url: string
|
|
}
|