mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
9 lines
280 B
C#
9 lines
280 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Rejected Encounter Data containing a reason why the encounter was rejected (not compatible).
|
|
/// </summary>
|
|
public sealed record EncounterRejected(IEncounterable Encounter, CheckResult Check)
|
|
{
|
|
public string Reason => Check.Comment;
|
|
}
|