mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
17 lines
440 B
TypeScript
17 lines
440 B
TypeScript
import { GroupFriendsUpdate } from '@/data/proto/3_3/GroupFriendsUpdate'
|
|
|
|
import { AbstractLoggingView } from './AbstractLogging.view'
|
|
|
|
export class GroupFriendsUpdateLoggingView extends AbstractLoggingView {
|
|
public constructor(private self: GroupFriendsUpdate) {
|
|
super()
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
public toJSON(): any {
|
|
return {
|
|
colorFusion: this.self.colorFusion,
|
|
}
|
|
}
|
|
}
|