Files
Apollon/Apollon.WPF/Stores/TournamentStore.cs
2022-08-16 03:52:02 +02:00

20 lines
404 B
C#

using Apollon.WPF.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.Stores
{
public class TournamentStore
{
public event Action<Tournament> TournamentAdded;
public async Task Add(Tournament tournament)
{
TournamentAdded?.Invoke(tournament);
}
}
}