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

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; }
}
}