using System; using System.Collections.Generic; using System.Text; namespace GxPress.Result.App { public class Option { public string Label { get; set; } public int Value { get; set; } public List<Option> Options { get; set; } } }