2019-06-29 12:29:12 +05:30
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
|
|
using osu.Game.Scoring;
|
|
|
|
|
|
2019-06-12 01:31:57 +05:30
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
2021-11-05 17:37:05 +09:00
|
|
|
|
public class DownloadReplayRequest : ArchiveDownloadRequest<IScoreInfo>
|
2019-06-12 01:31:57 +05:30
|
|
|
|
{
|
2021-11-05 17:37:05 +09:00
|
|
|
|
public DownloadReplayRequest(IScoreInfo score)
|
2019-06-12 01:31:57 +05:30
|
|
|
|
: base(score)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-26 21:10:21 +05:30
|
|
|
|
protected override string FileExtension => ".osr";
|
|
|
|
|
|
2023-08-28 13:50:52 +02:00
|
|
|
|
protected override string Target => $@"scores/{Model.OnlineID}/download";
|
2019-06-12 01:31:57 +05:30
|
|
|
|
}
|
|
|
|
|
}
|