mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
d93911ae97
Closes #1552.
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
/// <summary>
|
|
/// Beatmap metrics based on acculumated online data from community plays.
|
|
/// </summary>
|
|
public class BeatmapMetrics
|
|
{
|
|
/// <summary>
|
|
/// Total vote counts of user ratings on a scale of 0..10 where 0 is unused (probably will be fixed at API?).
|
|
/// </summary>
|
|
public IEnumerable<int> Ratings { get; set; }
|
|
|
|
/// <summary>
|
|
/// Points of failure on a relative time scale (usually 0..100).
|
|
/// </summary>
|
|
[JsonProperty(@"fail")]
|
|
public IEnumerable<int> Fails { get; set; }
|
|
|
|
/// <summary>
|
|
/// Points of retry on a relative time scale (usually 0..100).
|
|
/// </summary>
|
|
[JsonProperty(@"exit")]
|
|
public IEnumerable<int> Retries { get; set; }
|
|
}
|
|
}
|