Gitiles
Code Review
Sign In
gerrit.opencord.org
/
xos-gui
/
8b9f1647ff6a8edea84da39ca6c99bb9a67ed837
/
.
/
src
/
app
/
interfaces
/
auth.interface.ts
blob: 1742fb7865156ae315100d430f03dc4dfcf4d77b [
file
] [
log
] [
blame
]
Matteo Scandolo
43ffb67
2016-12-02 14:49:58 -0800
[
diff
] [
blame
]
1
export
interface
IAuthRequest
{
2
username
:
string
;
3
password
:
string
;
4
}
5
6
export
interface
IAuthResponse
{
7
xossessionid
:
string
;
8
xoscsrftoken
:
string
;
9
user
:
string
;
10
}