mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Squash commits from private fork
Temporary comments left to-remove later
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user