This repository was archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathPocketUser.cs
More file actions
67 lines (56 loc) · 1.26 KB
/
PocketUser.cs
File metadata and controls
67 lines (56 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using Newtonsoft.Json;
using System;
namespace PocketSharp.Models
{
/// <summary>
/// Access Code
/// </summary>
[JsonObject]
public class PocketUser
{
/// <summary>
/// Pocket user id.
/// </summary>
public string Id { get; set; }
/// <summary>
/// The access code.
/// </summary>
public string Code { get; set; }
/// <summary>
/// Pocket username.
/// </summary>
public string Username { get; set; }
/// <summary>
/// Email address.
/// </summary>
public string Email { get; set; }
/// <summary>
/// First name.
/// </summary>
public string FirstName { get; set; }
/// <summary>
/// Last name.
/// </summary>
public string LastName { get; set; }
/// <summary>
/// Profile avatar.
/// </summary>
public Uri Avatar { get; set; }
/// <summary>
/// Is default avatar.
/// </summary>
public bool IsDefaultAvatar { get; set; } = true;
/// <summary>
/// Follower count.
/// </summary>
public int Followers { get; set; }
/// <summary>
/// Follow count.
/// </summary>
public int Follows { get; set; }
/// <summary>
/// Profile text.
/// </summary>
public string Description { get; set; }
}
}