1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/enities/User.ts
2016-03-12 18:11:19 +01:00

3 lines
130 B
TypeScript

export class User {
constructor(private name?:string = null,private email?:string = null, private password?:string = null){}
}