mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
19 lines
294 B
C#
19 lines
294 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class AothQuestions
|
|
{
|
|
public class Question
|
|
{
|
|
public int id { get; set; }
|
|
|
|
public string question { get; set; }
|
|
|
|
public int number { get; set; }
|
|
|
|
public string answer { get; set; }
|
|
}
|
|
|
|
public Question[] questions { get; set; }
|
|
}
|
|
}
|