2022-06-18 18:04:24 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Status of passing or failing frame match results.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum LockInfo
|
2017-05-14 19:42:27 +00:00
|
|
|
|
{
|
2021-03-14 18:28:46 +00:00
|
|
|
|
/// <summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// PID matches the required parameters.
|
2021-03-14 18:28:46 +00:00
|
|
|
|
/// </summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
Pass,
|
2017-05-14 19:42:27 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// PID did not match the required Nature.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Nature,
|
2017-05-14 19:42:27 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// PID did not match the required Gender.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Gender,
|
2017-05-14 19:42:27 +00:00
|
|
|
|
}
|