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

29
ref/Entities/Role.cs Normal file
View File

@@ -0,0 +1,29 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Discord
{
public class Role : IModel<ulong>, IMentionable
{
public DiscordClient Client { get; }
public ulong Id { get; }
public Server Server { get; }
public string Name { get; }
public bool IsHoisted { get; }
public int Position { get; }
public bool IsManaged { get; }
public ServerPermissions Permissions { get; }
public Color Color { get; }
public bool IsEveryone { get; }
public IEnumerable<User> Members { get; }
public string Mention { get; }
public Task Delete() => null;
public Task Save() => null;
}
}