Projekt

Obecné

Profil

Stáhnout (393 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
#nullable disable
17
    public bool Ok { get; set; }
18
    public string Token { get; set; }
19
    public DateTime Expiration { get; set; }
20
}
(2-2/2)