mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 21:21:34 +00:00
19 lines
363 B
C#
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; }
|
|
}
|
|
}
|