namespace CoreLibrary.Events { public class AjouterJetonEventArgs : EventArgs { public Jeton Jeton { get; private set; } public AjouterJetonEventArgs(Jeton jeton) { Jeton = jeton; } } }