mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import { User } from '@entity/User'
|
|
|
|
import { Account } from './Account'
|
|
import { Password } from './Password'
|
|
import { Profile } from './Profile'
|
|
|
|
export class PostUser {
|
|
public constructor(user: User) {
|
|
this.account = new Account(user)
|
|
this.profile = new Profile(user)
|
|
}
|
|
|
|
account: Account
|
|
profile: Profile
|
|
password: Password
|
|
}
|