gradido/backend/src/apis/dltConnector/model/CommunityAccountIdentifier.ts
2025-09-16 07:13:02 +02:00

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
}
}