1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game.Tournament/Models/TournamentRound.cs

30 lines
978 B
C#
Raw Normal View History

2019-03-04 12:24:19 +08: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.
using System;
2018-09-24 22:30:37 +08:00
using System.Collections.Generic;
2018-10-16 15:07:59 +08:00
using Newtonsoft.Json;
2019-03-02 12:40:43 +08:00
using osu.Framework.Bindables;
2018-09-24 22:30:37 +08:00
2019-06-18 13:51:48 +08:00
namespace osu.Game.Tournament.Models
{
2018-10-16 15:07:59 +08:00
[Serializable]
2019-06-18 13:44:15 +08:00
public class TournamentRound
{
2018-10-13 06:10:13 +08:00
public readonly Bindable<string> Name = new Bindable<string>();
public readonly Bindable<string> Description = new Bindable<string>();
public readonly BindableInt BestOf = new BindableInt(9) { Default = 9, MinValue = 3, MaxValue = 23 };
2018-09-24 22:30:37 +08:00
2018-10-16 15:07:59 +08:00
[JsonProperty]
2019-06-18 13:44:15 +08:00
public readonly List<RoundBeatmap> Beatmaps = new List<RoundBeatmap>();
2018-10-14 17:00:28 +08:00
public readonly Bindable<DateTimeOffset> StartDate = new Bindable<DateTimeOffset>();
// only used for serialisation
2019-06-18 13:57:05 +08:00
public List<int> Matches = new List<int>();
2018-11-15 13:12:41 +08:00
public override string ToString() => Name.Value ?? "None";
}
}