mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
18 lines
353 B
C#
18 lines
353 B
C#
namespace AppleBatch_June.ExecuteTasks
|
|
{
|
|
public class AppleChangeCityTask : AppleAccountChangeTask
|
|
{
|
|
public new static AppleChangeCityTask Instance { get; private set; }
|
|
|
|
static AppleChangeCityTask()
|
|
{
|
|
Instance = new AppleChangeCityTask("白ID转国家");
|
|
}
|
|
|
|
public AppleChangeCityTask(string _taskName)
|
|
: base(_taskName)
|
|
{
|
|
}
|
|
}
|
|
}
|