using CoreLibrary.Joueurs; namespace CoreLibrary.Evenements { public class PartiePartieTermineeEventArgs : EventArgs { public IReadOnlyList Gagnants { get; private init; } public IReadOnlyList Perdants { get; private init; } public PartiePartieTermineeEventArgs(IReadOnlyList gagnants, IReadOnlyList perdants) { Gagnants = gagnants; Perdants = perdants; } } }