Skip to content

Commit

Permalink
📃 add AccessToken and User model #2
Browse files Browse the repository at this point in the history
  • Loading branch information
folt committed Apr 4, 2022
1 parent c4eb9a9 commit 0794a8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/api/model/Auth.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default interface AccessToken {
access_token: string,
expires: string,
}
4 changes: 4 additions & 0 deletions src/api/model/User.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default interface User {
username: string,
password: string,
}

0 comments on commit 0794a8d

Please sign in to comment.