mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
export class CommunityAccountIdentifier {
|
|
// for community user, uuid and communityUuid used
|
|
userUuid: string
|
|
accountNr?: number
|
|
|
|
constructor(userUuid: string, accountNr?: number) {
|
|
this.userUuid = userUuid
|
|
this.accountNr = accountNr
|
|
}
|
|
}
|