mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
14 lines
332 B
TypeScript
14 lines
332 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
import { Field, ObjectType } from 'type-graphql'
|
|
|
|
@ObjectType()
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export class GetPublicKeyResult {
|
|
constructor(pubKey: string) {
|
|
this.publicKey = pubKey
|
|
}
|
|
|
|
@Field(() => String)
|
|
publicKey: string
|
|
}
|