Files
PocketSharp/PocketSharp/Models/PocketUser.cs
T
2013-10-25 15:49:47 +01:00

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; }
}
}