namespace PKHeX.Core
{
///
/// Status of passing or failing frame match results.
///
public enum LockInfo
{
///
/// PID matches the required parameters.
///
Pass,
///
/// PID did not match the required Nature.
///
Nature,
///
/// PID did not match the required Gender.
///
Gender,
}
}