mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 07:50:32 +00:00
12 lines
212 B
C#
12 lines
212 B
C#
|
namespace PKHeX.Core;
|
|||
|
|
|||
|
public interface ICheckResult
|
|||
|
{
|
|||
|
Severity Judgement { get; }
|
|||
|
CheckIdentifier Identifier { get; }
|
|||
|
string Comment { get; }
|
|||
|
|
|||
|
bool Valid { get; }
|
|||
|
string Rating { get; }
|
|||
|
}
|