This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/src/core/domain/authorize/registerUserResult.ts
2017-10-30 20:48:18 +07:00

24 lines
377 B
TypeScript

import { BaseDomain } from 'core/domain/common'
export class RegisterUserResult extends BaseDomain{
constructor(uid: string){
super()
this._uid = uid
}
/**
* User identifier
*
* @type {string}
* @memberof LoginUser
*/
private _uid : string
public get uid (): string {
return this._uid
}
}