12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Common.Model
- {
- public class Option
- {
- private string _label;
- private string _value;
- private bool _disabled;
- public string label
- {
- get { return _label; }
- set { _label = value; }
- }
- public string value
- {
- get { return _value; }
- set { _value = value; }
- }
- public bool disabled
- {
- get { return _disabled; }
- set { _disabled = value; }
- }
- }
- }
|