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,10 +5,10 @@ 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;
public readonly ChatReportReason Reason; public readonly ChatReportReason Reason;
public readonly string Comment; public readonly string Comment;
@ -34,4 +34,5 @@ public class ChatReportRequest : APIRequest
} }
protected override string Target => @"reports"; protected override string Target => @"reports";
}
} }