// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using osu.Game.Online.Rooms; using osu.Game.Scoring; namespace osu.Game.Online.Solo { public class SubmitSoloScoreRequest : SubmitScoreRequest { private readonly int beatmapId; public SubmitSoloScoreRequest(ScoreInfo scoreInfo, long scoreId, int beatmapId) : base(scoreInfo, scoreId) { this.beatmapId = beatmapId; } protected override string Target => $@"beatmaps/{beatmapId}/solo/scores/{ScoreId}"; } }