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
741 B
25 lines
741 B
using CoreLibrary.Core;
|
|
|
|
namespace CoreLibrary.Events
|
|
{
|
|
/// <summary>
|
|
/// Classe contenant les arguments passées en paramètre lors de l'événement AjouterJeton.
|
|
/// </summary>
|
|
public class AjouterJetonEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// 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 qui a été ajouté.</param>
|
|
public AjouterJetonEventArgs(Jeton jeton)
|
|
{
|
|
Jeton = jeton;
|
|
}
|
|
}
|
|
}
|