Add default date to matches

This commit is contained in:
smoogipoo 2019-06-21 15:34:03 +09:00
parent cffc82ce81
commit 5a34794240
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public List<string> Acronyms
/// </summary>
public readonly Bindable<bool> Current = new Bindable<bool>();
public readonly Bindable<DateTimeOffset> Date = new Bindable<DateTimeOffset>();
public readonly Bindable<DateTimeOffset> Date = new Bindable<DateTimeOffset>(DateTimeOffset.Now);
[JsonProperty]
public readonly BindableList<ConditionalTournamentMatch> ConditionalMatches = new BindableList<ConditionalTournamentMatch>();