Refactor orphaning to better follow osu-web specification

This commit is contained in:
smoogipoo
2020-02-21 17:02:48 +09:00
parent c7d64d0015
commit 37e295e4be
2 changed files with 47 additions and 61 deletions

View File

@ -4,7 +4,6 @@
using Newtonsoft.Json;
using osu.Game.Users;
using System;
using System.Collections.Generic;
namespace osu.Game.Online.API.Requests.Responses
{
@ -16,8 +15,6 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty(@"parent_id")]
public long? ParentId { get; set; }
public readonly List<Comment> ChildComments = new List<Comment>();
public Comment ParentComment { get; set; }
[JsonProperty(@"user_id")]