Guest User

Untitled

a guest
May 30th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. export class AuthStateModel {
  2. token: string;
  3. username: string;
  4. }
  5.  
  6. export class Login {
  7. static readonly type = '[Auth] Login';
  8. constructor(public payload: { username: string, password: string }) {}
  9. }
  10.  
  11. export class Logout {
  12. static readonly type = '[Auth] Logout';
  13. }
Add Comment
Please, Sign In to add comment