1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 18:23:04 +08:00
This commit is contained in:
Dean Herbert 2018-12-26 22:42:17 +09:00
parent cc1f3d54b0
commit bb502769c7

View File

@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using osu.Game.Beatmaps;
using osu.Game.Database;
using osu.Game.Rulesets;
@ -20,6 +21,7 @@ namespace osu.Game.Scoring
public int ID { get; set; }
[JsonProperty("rank")]
[JsonConverter(typeof(StringEnumConverter))]
public ScoreRank Rank { get; set; }
[JsonProperty("total_score")]