mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Hook up api and implement some visual comments representation
This commit is contained in:
@ -16,7 +16,7 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
public bool HasMore { get; set; }
|
||||
|
||||
[JsonProperty(@"has_more_id")]
|
||||
public long HasMoreId { get; set; }
|
||||
public long? HasMoreId { get; set; }
|
||||
|
||||
[JsonProperty(@"user_follow")]
|
||||
public bool UserFollow { get; set; }
|
||||
|
@ -52,16 +52,16 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
public DateTimeOffset CreatedAt { get; set; }
|
||||
|
||||
[JsonProperty(@"updated_at")]
|
||||
public DateTimeOffset UpdatedAt { get; set; }
|
||||
public DateTimeOffset? UpdatedAt { get; set; }
|
||||
|
||||
[JsonProperty(@"deleted_at")]
|
||||
public DateTimeOffset DeletedAt { get; set; }
|
||||
public DateTimeOffset? DeletedAt { get; set; }
|
||||
|
||||
[JsonProperty(@"edited_at")]
|
||||
public DateTimeOffset EditedAt { get; set; }
|
||||
public DateTimeOffset? EditedAt { get; set; }
|
||||
|
||||
[JsonProperty(@"edited_by_id")]
|
||||
public long EditedById { get; set; }
|
||||
public long? EditedById { get; set; }
|
||||
|
||||
public bool IsTopLevel { get; set; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user