PKHeX/PKHeX.Core/PKM/Interfaces/IFavorite.cs

13 lines
278 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// Can mark as a "Favorite" in <see cref="GameVersion.GG"/>
/// </summary>
public interface IFavorite
2019-11-16 01:34:18 +00:00
{
/// <summary>
/// Marked as a "Favorite" in <see cref="GameVersion.GG"/>
/// </summary>
bool IsFavorite { get; set; }
}