namespace PKHeX.Core; /// /// Interface that exposes a to see which canonical generation the data originated in. /// public interface IGeneration { /// /// The canonical generation the data originated in. /// int Generation { get; } }