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

19 lines
363 B
C#

namespace AppleBatch_June.Model
{
public class AvailableSecurityQuestions
{
public class Availablesecurityquestion
{
public int id { get; set; }
public string question { get; set; }
public int number { get; set; }
public bool userDefined { get; set; }
}
public Availablesecurityquestion[][] availableSecurityQuestions { get; set; }
}
}