gradido/dlt-connector/src/logging/IdentifierSeedLogging.view.ts

17 lines
409 B
TypeScript

import { IdentifierSeed } from '@/graphql/input/IdentifierSeed'
import { AbstractLoggingView } from './AbstractLogging.view'
export class IdentifierSeedLoggingView extends AbstractLoggingView {
public constructor(private self: IdentifierSeed) {
super()
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
public toJSON(): any {
return {
seed: this.self.seed,
}
}
}