mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 00:27:25 +08:00
26 lines
751 B
C#
26 lines
751 B
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;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public class BeatmapMetric
|
|
{
|
|
/// <summary>
|
|
/// Ratings for a beatmap, length should be 10
|
|
/// </summary>
|
|
public IEnumerable<int> Ratings { get; set; }
|
|
|
|
/// <summary>
|
|
/// Fails for a beatmap, length should be 100
|
|
/// </summary>
|
|
public IEnumerable<int> Fails { get; set; }
|
|
|
|
/// <summary>
|
|
/// Retries for a beatmap, length should be 100
|
|
/// </summary>
|
|
public IEnumerable<int> Retries { get; set; }
|
|
}
|
|
}
|