mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-26 07:46:09 -05:00
8 lines
176 B
C#
8 lines
176 B
C#
namespace PKHeX.Core;
|
|
|
|
public interface IItemNew
|
|
{
|
|
/// <summary> Indicates if the item is "NEW"ly obtained and not yet viewed. </summary>
|
|
bool IsNew { get; set; }
|
|
}
|