Fix non-block namespace

This commit is contained in:
Dean Herbert 2023-05-03 18:51:02 +09:00
parent 4f55afb60d
commit b28d7b1a92

View File

@ -5,8 +5,8 @@ using System.Net.Http;
using osu.Framework.IO.Network; using osu.Framework.IO.Network;
using osu.Game.Overlays.Chat; using osu.Game.Overlays.Chat;
namespace osu.Game.Online.API.Requests; namespace osu.Game.Online.API.Requests
{
public class ChatReportRequest : APIRequest public class ChatReportRequest : APIRequest
{ {
public readonly long? MessageId; public readonly long? MessageId;
@ -35,3 +35,4 @@ public class ChatReportRequest : APIRequest
protected override string Target => @"reports"; protected override string Target => @"reports";
} }
}