namespace CoreLibrary.Regles { public interface IRegles { int Indice { get; } string Nom { get; } string Description { get; } int NbJoueurs { get; } int NbTour { get; } int TailleCode { get; } bool Equals(object? obj); int GetHashCode(); } }