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