namespace UAS_MES_NEW.Entity
{
    class ItemObject
    {
        public string Text = "", Value = "";//可以多个

        public ItemObject(string _text, string _value)
        {
            Text = _text;
            Value = _value;
        }

        public override string ToString()
        {
            return Text;
        }
    }
}