mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-21 09:53:14 +00:00
12 lines
206 B
C#
12 lines
206 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Object has Trainer ownership
|
|||
|
/// </summary>
|
|||
|
public interface ITrainerID
|
|||
|
{
|
|||
|
int TID { get; set; }
|
|||
|
int SID { get; set; }
|
|||
|
}
|
|||
|
}
|