mirror of
https://github.com/recroom2016/OpenRec.git
synced 2026-04-22 13:25:51 +00:00
Add project files.
This commit is contained in:
41
Profiles.cs
Normal file
41
Profiles.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace api2016
|
||||
|
||||
{
|
||||
class Profiles
|
||||
{
|
||||
|
||||
public ulong Id { get; set; }
|
||||
public string Username { get; set; }
|
||||
public string DisplayName { get; set; }
|
||||
public int XP { get; set; }
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user