aswi20220x00-gitlab/Backend/Models/Authentication/LoginResponse.cs @ 96b6457d
1 |
namespace Models.Authentication; |
---|---|
2 |
|
3 |
public class LoginResponse |
4 |
{
|
5 |
public LoginResponse(bool ok, string token, DateTime expiration) |
6 |
{
|
7 |
Ok = ok; |
8 |
Token = token; |
9 |
Expiration = expiration; |
10 |
}
|
11 |
|
12 |
public LoginResponse() |
13 |
{
|
14 |
}
|
15 |
|
16 |
public bool Ok { get; set; } |
17 |
public string Token { get; set; } |
18 |
public DateTime Expiration { get; set; } |
19 |
}
|
- « Předchozí
- 1
- 2
- Další »