Option.cs 271 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GxPress.Result.App
  5. {
  6. public class Option
  7. {
  8. public string Label { get; set; }
  9. public int Value { get; set; }
  10. public List<Option> Options { get; set; }
  11. }
  12. }