osu/osu.Game/Database/BeatmapMetric.cs

26 lines
730 B
C#
Raw Normal View History

2017-04-10 14:42:23 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-11 12:02:56 +00:00
using System.Collections.Generic;
2017-04-10 14:42:23 +00:00
namespace osu.Game.Database
{
public class BeatmapMetric
{
/// <summary>
/// Ratings for a beatmap, length should be 10
/// </summary>
2017-04-11 12:02:56 +00:00
public List<int> Ratings { get; set; }
2017-04-10 14:42:23 +00:00
/// <summary>
/// Fails for a beatmap, length should be 100
/// </summary>
2017-04-11 12:02:56 +00:00
public List<int> Fails { get; set; }
2017-04-10 14:42:23 +00:00
/// <summary>
/// Retries for a beatmap, length should be 100
/// </summary>
2017-04-11 12:02:56 +00:00
public List<int> Retries { get; set; }
2017-04-10 14:42:23 +00:00
}
}