2019-01-24 08:43:03 +00:00
|
|
|
|
// 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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
2019-06-12 04:30:23 +00:00
|
|
|
|
public class DownloadBeatmapSetRequest : ArchiveDownloadRequest<BeatmapSetInfo>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly bool noVideo;
|
|
|
|
|
|
|
|
|
|
public DownloadBeatmapSetRequest(BeatmapSetInfo set, bool noVideo)
|
2019-06-11 14:06:08 +00:00
|
|
|
|
: base(set)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
this.noVideo = noVideo;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-19 14:13:09 +00:00
|
|
|
|
protected override string Target => $@"beatmapsets/{Model.OnlineBeatmapSetID}/download{(noVideo ? "?noVideo=1" : "")}";
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|