namespace LearnosityCookbookRecipe
{
class Question
{
public string Reference
{ get; set; }
public string WidgetType
{ get; set; }
public string Type
{ get; set; }
public struct QuestionData
{
public Array Options
{ get; set; }
public string Stimulus
{ get; set; }
struct QuestionValidation
{
string ScoringType
{ get; set; }
struct valid_response
{
public int Score
{ get; set; }
public Array Value
{ get; set; }
}
}
}
}
}
namespace LearnosityCookbookRecipe
{
class Question
{
public string Reference
{ get; set; }
public string WidgetType
{ get; set; }
public string Type
{ get; set; }
public struct QuestionData
{
public Array Options
{ get; set; }
public string Stimulus
{ get; set; }
struct QuestionValidation
{
string ScoringType
{ get; set; }
struct valid_response
{
public int Score
{ get; set; }
public Array Value
{ get; set; }
}
}
}
}
}