32 lines
605 B
C#
32 lines
605 B
C#
using Newtonsoft.Json;
|
|
using PropertyChanged;
|
|
|
|
namespace PocketSharp.Models
|
|
{
|
|
/// <summary>
|
|
/// Access Code
|
|
/// </summary>
|
|
[JsonObject]
|
|
[ImplementPropertyChanged]
|
|
public class PocketUser
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the code.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The code.
|
|
/// </value>
|
|
[JsonProperty("access_token")]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the username.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The username.
|
|
/// </value>
|
|
[JsonProperty("username")]
|
|
public string Username { get; set; }
|
|
}
|
|
}
|