1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Database/BeatmapMetric.cs

26 lines
751 B
C#
Raw Normal View History

2017-04-10 22:42:23 +08: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 20:02:56 +08:00
using System.Collections.Generic;
2017-04-10 22:42:23 +08:00
namespace osu.Game.Database
{
public class BeatmapMetric
{
/// <summary>
/// Ratings for a beatmap, length should be 10
/// </summary>
2017-04-12 00:43:48 +08:00
public IEnumerable<int> Ratings { get; set; }
2017-04-10 22:42:23 +08:00
/// <summary>
/// Fails for a beatmap, length should be 100
/// </summary>
2017-04-12 00:43:48 +08:00
public IEnumerable<int> Fails { get; set; }
2017-04-10 22:42:23 +08:00
/// <summary>
/// Retries for a beatmap, length should be 100
/// </summary>
2017-04-12 00:43:48 +08:00
public IEnumerable<int> Retries { get; set; }
2017-04-10 22:42:23 +08:00
}
}