270b7d059c
* Added endpoint to download cover art * Code cleanup * More cleanup
18 lines
444 B
C#
18 lines
444 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Icarus.Models;
|
|
|
|
public class LoginResult : BaseResult
|
|
{
|
|
[JsonProperty("user_id")]
|
|
public int UserID { get; set; }
|
|
[JsonProperty("username")]
|
|
public string Username { get; set; }
|
|
[JsonProperty("token")]
|
|
public string Token { get; set; }
|
|
[JsonProperty("token_type")]
|
|
public string TokenType { get; set; }
|
|
[JsonProperty("expiration")]
|
|
public int Expiration { get; set; }
|
|
}
|