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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
672 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.
2022-06-17 07:37:17 +00:00
#nullable disable
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}";
}
}