mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 01:47:30 +09:00
26 lines
730 B
C#
26 lines
730 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 List<int> Ratings { get; set; }
|
|
|
|
/// <summary>
|
|
/// Fails for a beatmap, length should be 100
|
|
/// </summary>
|
|
public List<int> Fails { get; set; }
|
|
|
|
/// <summary>
|
|
/// Retries for a beatmap, length should be 100
|
|
/// </summary>
|
|
public List<int> Retries { get; set; }
|
|
}
|
|
}
|