2019-05-13 00:36:05 +09: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 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-07-19 19:07:24 +02:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
2019-05-13 16:24:32 +09:00
|
|
|
|
public class GetChangelogRequest : APIRequest<APIChangelogIndex>
|
2018-07-19 19:07:24 +02:00
|
|
|
|
{
|
2018-07-20 18:23:25 +02:00
|
|
|
|
protected override string Target => @"changelog";
|
2018-07-19 19:07:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|