Option.cs 623 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Common.Model
  6. {
  7. public class Option
  8. {
  9. private string _label;
  10. private string _value;
  11. private bool _disabled;
  12. public string label
  13. {
  14. get { return _label; }
  15. set { _label = value; }
  16. }
  17. public string value
  18. {
  19. get { return _value; }
  20. set { _value = value; }
  21. }
  22. public bool disabled
  23. {
  24. get { return _disabled; }
  25. set { _disabled = value; }
  26. }
  27. }
  28. }