File tree 1 file changed +4
-2
lines changed
osu.Game/Online/API/Requests/Responses
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ namespace osu.Game.Online.API.Requests.Responses
18
18
[ Serializable ]
19
19
public class SoloScoreInfo : IHasOnlineID < long >
20
20
{
21
- [ JsonProperty ( "replay " ) ]
21
+ [ JsonProperty ( "has_replay " ) ]
22
22
public bool HasReplay { get ; set ; }
23
23
24
24
[ JsonProperty ( "beatmap_id" ) ]
@@ -83,6 +83,9 @@ public class SoloScoreInfo : IHasOnlineID<long>
83
83
[ JsonProperty ( "legacy_total_score" ) ]
84
84
public int ? LegacyTotalScore { get ; set ; }
85
85
86
+ [ JsonProperty ( "legacy_score_id" ) ]
87
+ public uint ? LegacyScoreId { get ; set ; }
88
+
86
89
#region osu-web API additions (not stored to database).
87
90
88
91
[ JsonProperty ( "id" ) ]
@@ -117,7 +120,6 @@ public APIBeatmapSet? BeatmapSet
117
120
public bool ShouldSerializeBeatmapSet ( ) => false ;
118
121
public bool ShouldSerializePP ( ) => false ;
119
122
public bool ShouldSerializeOnlineID ( ) => false ;
120
- public bool ShouldSerializeHasReplay ( ) => false ;
121
123
122
124
#endregion
123
125
You can’t perform that action at this time.
0 commit comments