Added reference project

This commit is contained in:
RogueException
2016-02-24 19:36:18 -04:00
parent 27d7e9915b
commit 36ea8b8c3a
68 changed files with 1515 additions and 0 deletions

23
ref/Entities/Profile.cs Normal file
View File

@@ -0,0 +1,23 @@
using System.Threading.Tasks;
namespace Discord
{
public class Profile : IModel<ulong>
{
public DiscordClient Client { get; }
public ulong Id { get; }
public string AvatarId { get; }
public string AvatarUrl { get; }
public ushort Discriminator { get; }
public string CurrentGame { get; }
public UserStatus Status { get; }
public string Mention { get; }
public string Email { get; }
public bool? IsVerified { get; }
public string Name { get; set; }
public Task Save() => null;
}
}