mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
17 lines
409 B
TypeScript
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,
|
|
}
|
|
}
|
|
}
|