Squash commits from private fork

Temporary comments left to-remove later
This commit is contained in:
「空白」
2020-05-12 03:18:47 +09:00
parent d5ae8f5ef4
commit 35e7cee458
6 changed files with 236 additions and 45 deletions

View File

@ -13,4 +13,13 @@ namespace osu.Game.Online.API.Requests
[JsonProperty("cursor")]
public dynamic CursorJson;
}
public abstract class ResponseWithCursor<T> : ResponseWithCursor where T : class
{
/// <summary>
/// Cursor deserialized into T class type (cannot implicitly convert type to object using raw Cursor)
/// </summary>
[JsonProperty("cursor")]
public T Cursor;
}
}