32 lines
410 B
TypeScript
32 lines
410 B
TypeScript
|
|
||
|
|
||
|
/**
|
||
|
* User
|
||
|
*/
|
||
|
export default class User {
|
||
|
|
||
|
//#region get set
|
||
|
|
||
|
// public get NickName(): string {
|
||
|
// return this.nickName
|
||
|
// }
|
||
|
|
||
|
// private nickName: string = undefined
|
||
|
public UserId: number = undefined
|
||
|
public NickName: string = undefined
|
||
|
|
||
|
//#endregion
|
||
|
|
||
|
//#region Lifecycle
|
||
|
|
||
|
// constructor(nickName: string) {
|
||
|
// this.nickName = nickName
|
||
|
// }
|
||
|
|
||
|
//#endregion
|
||
|
|
||
|
//#region Custom
|
||
|
|
||
|
//#endregion
|
||
|
}
|