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.
17 lines
373 B
17 lines
373 B
|
|
namespace CoreLibrary.Events
|
|
{
|
|
/// <summary>
|
|
/// Représente les arguments d'événement pour la demande d'ajout d'un jeton.
|
|
/// </summary>
|
|
public class DemanderJetonEventArgs : EventArgs
|
|
{
|
|
public int Indice { get; private set; }
|
|
|
|
public DemanderJetonEventArgs(int indice)
|
|
{
|
|
Indice = indice;
|
|
}
|
|
}
|
|
}
|