Fixes to ref channel
This commit is contained in:
@@ -9,6 +9,9 @@ namespace Discord
|
||||
{
|
||||
public sealed class Properties
|
||||
{
|
||||
public string Name { get; }
|
||||
public string Topic { get; }
|
||||
public int Position { get; }
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
@@ -43,6 +46,10 @@ namespace Discord
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<User> Users { get; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public PermissionOverwrite? GetPermissionOverwrite(User user) => null;
|
||||
/// <inheritdoc />
|
||||
public PermissionOverwrite? GetPermissionOverwrite(Role role) => null;
|
||||
/// <inheritdoc />
|
||||
public Task<IEnumerable<User>> GetUsers() => null;
|
||||
/// <inheritdoc />
|
||||
@@ -52,10 +59,6 @@ namespace Discord
|
||||
/// <inheritdoc />
|
||||
public Task<IEnumerable<Message>> GetMessages(int limit = 100, ulong? relativeMessageId = null, Relative relativeDir = Relative.Before) => null;
|
||||
/// <inheritdoc />
|
||||
public Task<PermissionOverwrite?> GetPermissionOverwrite(User user) => null;
|
||||
/// <inheritdoc />
|
||||
public Task<PermissionOverwrite?> GetPermissionOverwrite(Role role) => null;
|
||||
/// <inheritdoc />
|
||||
public Task<IEnumerable<Invite>> GetInvites() => null;
|
||||
|
||||
/// <inheritdoc />
|
||||
|
||||
Reference in New Issue
Block a user