Rename Channel to ChannelChat

This commit is contained in:
miterosan
2018-03-28 21:11:06 +02:00
parent ce7000dd50
commit 56de6c1067
10 changed files with 38 additions and 38 deletions

View File

@ -10,10 +10,10 @@ namespace osu.Game.Online.API.Requests
{
public class GetMessagesRequest : APIRequest<List<Message>>
{
private readonly List<Channel> channels;
private readonly List<ChannelChat> channels;
private long? since;
public GetMessagesRequest(List<Channel> channels, long? sinceId)
public GetMessagesRequest(List<ChannelChat> channels, long? sinceId)
{
this.channels = channels;
since = sinceId;

View File

@ -6,7 +6,7 @@ using osu.Game.Online.Chat;
namespace osu.Game.Online.API.Requests
{
public class ListChannelsRequest : APIRequest<List<Channel>>
public class ListChannelsRequest : APIRequest<List<ChannelChat>>
{
protected override string Target => @"chat/channels";
}