终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 line
423 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.MessageCommunication.MsgControl
  7. {
  8. /// <summary>
  9. /// 内部消息的事件参数
  10. /// </summary>
  11. public class InnerMessageEventArgs :Object
  12. {
  13. public object obj_Sender;
  14. public string str_MessageStr;
  15. public object obj_MessageObj;
  16. }
  17. }