Moved IDMChannel/IGuildChannel's IUpdateable to IChannel

This commit is contained in:
RogueException
2016-06-28 02:46:58 -03:00
parent 5544d0759b
commit d4c2a17516
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ using System.Threading.Tasks;
namespace Discord
{
public interface IChannel : ISnowflakeEntity
public interface IChannel : ISnowflakeEntity, IUpdateable
{
/// <summary> Gets a collection of all users in this channel. </summary>
Task<IReadOnlyCollection<IUser>> GetUsersAsync();

View File

@@ -2,7 +2,7 @@
namespace Discord
{
public interface IDMChannel : IMessageChannel, IUpdateable
public interface IDMChannel : IMessageChannel
{
/// <summary> Gets the recipient of all messages in this channel. </summary>
IUser Recipient { get; }

View File

@@ -5,7 +5,7 @@ using System.Threading.Tasks;
namespace Discord
{
public interface IGuildChannel : IChannel, IDeletable, IUpdateable
public interface IGuildChannel : IChannel, IDeletable
{
/// <summary> Gets the name of this channel. </summary>
string Name { get; }