Remove IUser.CreateDMChannelAsync, implicitly implement IUser.GetDMChannelAsync

This commit is contained in:
AntiTcb
2017-05-27 14:47:12 -04:00
parent 7db38f32bb
commit 73611d1fab
4 changed files with 12 additions and 20 deletions

View File

@@ -20,8 +20,6 @@ namespace Discord
string Username { get; }
/// <summary> Returns a private message channel to this user, creating one if it does not already exist. </summary>
Task<IDMChannel> GetDMChannelAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null);
/// <summary> Returns a private message channel to this user, creating one if it does not already exist. </summary>
Task<IDMChannel> CreateDMChannelAsync(RequestOptions options = null);
Task<IDMChannel> GetDMChannelAsync(RequestOptions options = null);
}
}