mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
import { UserInterface } from './UserInterface'
|
|
|
|
export const peterLustig: UserInterface = {
|
|
email: 'peter@lustig.de',
|
|
firstName: 'Peter',
|
|
lastName: 'Lustig',
|
|
// description: 'Latzhose und Nickelbrille',
|
|
createdAt: new Date('2020-11-25T10:48:43'),
|
|
emailChecked: true,
|
|
language: 'de',
|
|
isAdmin: true,
|
|
}
|