2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-06-13 07:30:38 +00:00
|
|
|
|
using System;
|
2017-04-24 10:17:11 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-07-26 04:22:46 +00:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2017-04-10 14:42:23 +00:00
|
|
|
|
{
|
2017-04-12 12:09:39 +00:00
|
|
|
|
/// <summary>
|
2019-06-13 07:52:49 +00:00
|
|
|
|
/// Beatmap metrics based on accumulated online data from community plays.
|
2017-04-12 12:09:39 +00:00
|
|
|
|
/// </summary>
|
2021-10-25 06:34:41 +00:00
|
|
|
|
public class APIFailTimes
|
2017-04-10 14:42:23 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-04-12 12:08:28 +00:00
|
|
|
|
/// Points of failure on a relative time scale (usually 0..100).
|
2017-04-10 14:42:23 +00:00
|
|
|
|
/// </summary>
|
2017-04-24 10:17:11 +00:00
|
|
|
|
[JsonProperty(@"fail")]
|
2023-06-23 15:59:36 +00:00
|
|
|
|
public int[]? Fails { get; set; } = Array.Empty<int>();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-10 14:42:23 +00:00
|
|
|
|
/// <summary>
|
2017-04-12 12:08:28 +00:00
|
|
|
|
/// Points of retry on a relative time scale (usually 0..100).
|
2017-04-10 14:42:23 +00:00
|
|
|
|
/// </summary>
|
2017-04-24 10:17:11 +00:00
|
|
|
|
[JsonProperty(@"exit")]
|
2023-06-23 15:59:36 +00:00
|
|
|
|
public int[]? Retries { get; set; } = Array.Empty<int>();
|
2017-04-10 14:42:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|