2019-10-07 21:48:05 +08: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.
|
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
|
|
|
{
|
|
|
|
|
public class APIComments
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"comments")]
|
|
|
|
|
public List<Comment> Comments { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"has_more")]
|
|
|
|
|
public bool HasMore { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"has_more_id")]
|
2019-10-07 23:26:07 +08:00
|
|
|
|
public long? HasMoreId { get; set; }
|
2019-10-07 21:48:05 +08:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"user_follow")]
|
|
|
|
|
public bool UserFollow { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"included_comments")]
|
|
|
|
|
public List<Comment> IncludedComments { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"users")]
|
|
|
|
|
public List<User> Users { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"total")]
|
|
|
|
|
public int Total { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"top_level_count")]
|
|
|
|
|
public int TopLevelCount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|