Files
kami_itunes_june/AppleBatch_June.Model/IforgotVerifyPhoneModel.cs
2024-07-22 00:43:14 +08:00

15 lines
248 B
C#

namespace AppleBatch_June.Model
{
public class IforgotVerifyPhoneModel
{
public class Trustedphone
{
public string number { get; set; }
}
public Trustedphone[] trustedPhones { get; set; }
public bool recoverable { get; set; }
}
}