osu/osu.Game/Online/API/Requests/GetChangelogBuildRequest.cs

22 lines
653 B
C#
Raw Normal View History

2019-05-12 15:36:05 +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.
using osu.Game.Online.API.Requests.Responses;
namespace osu.Game.Online.API.Requests
{
public class GetChangelogBuildRequest : APIRequest<APIChangelogBuild>
{
2018-07-20 16:23:25 +00:00
private readonly string name;
private readonly string version;
2018-07-20 16:23:25 +00:00
public GetChangelogBuildRequest(string streamName, string buildVersion)
{
name = streamName;
version = buildVersion;
}
2018-07-20 16:23:25 +00:00
protected override string Target => $@"changelog/{name}/{version}";
}
}