PKHeX/PKHeX.Core/PKM/Shared/ITrainerID.cs

12 lines
206 B
C#
Raw Normal View History

namespace PKHeX.Core
{
/// <summary>
/// Object has Trainer ownership
/// </summary>
public interface ITrainerID
{
int TID { get; set; }
int SID { get; set; }
}
}