ItemObject.cs 346 B

123456789101112131415161718
  1. namespace UAS_MES_NEW.Entity
  2. {
  3. class ItemObject
  4. {
  5. public string Text = "", Value = "";//可以多个
  6. public ItemObject(string _text, string _value)
  7. {
  8. Text = _text;
  9. Value = _value;
  10. }
  11. public override string ToString()
  12. {
  13. return Text;
  14. }
  15. }
  16. }