2017 support in the works

This commit is contained in:
recroom2016
2022-02-22 00:30:48 -05:00
parent a8e081602a
commit 033634f104
8 changed files with 146 additions and 79 deletions

View File

@@ -2,12 +2,10 @@
using System.Collections.Generic;
using System.Text;
namespace api2016
namespace api2017
{
class Profiles
{
public ulong Id { get; set; }
public string Username { get; set; }
public string DisplayName { get; set; }
@@ -15,27 +13,13 @@ namespace api2016
public int Level { get; set; }
public int Reputation { get; set; }
public bool Verified { get; set; }
public bool Developer { get; set; }
public bool HasEmail { get; set; }
public bool CanReceiveInvites { get; set; }
public string ProfileImageName { get; set; }
public bool JuniorProfile { get; set; }
public bool ForceJuniorImages { get; set; }
public bool PendingJunior { get; set; }
public bool HasBirthday { get; set; }
}
}