diff options
author | crupest <crupest@outlook.com> | 2019-03-09 01:42:38 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-09 01:42:38 +0800 |
commit | d6e7d702db4e600d2298376ba9310e985ee69079 (patch) | |
tree | b8248d41f5bfccc82c5c110143c5504decf3e16d /Timeline/ClientApp/src/app/user/entities.ts | |
parent | 028af6f786ac2664d301614d57bbff053c3dc9c0 (diff) | |
download | timeline-d6e7d702db4e600d2298376ba9310e985ee69079.tar.gz timeline-d6e7d702db4e600d2298376ba9310e985ee69079.tar.bz2 timeline-d6e7d702db4e600d2298376ba9310e985ee69079.zip |
User named route in dialog.
Diffstat (limited to 'Timeline/ClientApp/src/app/user/entities.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/user/entities.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/user/entities.ts b/Timeline/ClientApp/src/app/user/entities.ts new file mode 100644 index 00000000..6d432ec6 --- /dev/null +++ b/Timeline/ClientApp/src/app/user/entities.ts @@ -0,0 +1,9 @@ +export interface UserCredentials { + username: string; + password: string; +} + +export interface UserInfo { + username: string; + roles: string[]; +} |