using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreLibrary.Events { public class PartieTermineeEventArgs : EventArgs { public IEnumerable Gagnants { get; private set; } public IEnumerable Perdants { get; private set; } public PartieTermineeEventArgs(IEnumerable gagnants, IEnumerable perdants) { Gagnants = gagnants; Perdants = perdants; } } }