Last change
on this file was 84d0fbb, checked in by Ema <ema_spirova@…>, 3 years ago |
spring security 2.0
|
-
Property mode
set to
100644
|
File size:
413 bytes
|
Line | |
---|
1 | export class User{
|
---|
2 |
|
---|
3 | id: number;
|
---|
4 | username: string;
|
---|
5 | fullName: string;
|
---|
6 | password: string;
|
---|
7 | confirmPassword: string;
|
---|
8 | create_At: Date;
|
---|
9 | update_At:Date;
|
---|
10 |
|
---|
11 | constructor(){
|
---|
12 | this.id = 1;
|
---|
13 | this.username = '';
|
---|
14 | this.fullName = '';
|
---|
15 | this.password = '';
|
---|
16 | this.confirmPassword = '';
|
---|
17 | this.create_At = new Date();
|
---|
18 | this.update_At = new Date();
|
---|
19 | }
|
---|
20 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.