You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
706 B
25 lines
706 B
|
|
|
|
namespace CoreLibrary.Events
|
|
{
|
|
/// <summary>
|
|
/// Représente les arguments d'événement pour l'événement d'ajout d'un jeton.
|
|
/// </summary>
|
|
public class AjouterJetonEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Obtient le jeton ajouté.
|
|
/// </summary>
|
|
public Jeton Jeton { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Initialise une nouvelle instance de la classe <see cref="AjouterJetonEventArgs"/> avec le jeton spécifié.
|
|
/// </summary>
|
|
/// <param name="jeton">Le jeton à ajouter.</param>
|
|
public AjouterJetonEventArgs(Jeton jeton)
|
|
{
|
|
Jeton = jeton;
|
|
}
|
|
}
|
|
}
|