ShowLogToFrmEventArgs.cs 472 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NX_ModelClassLibrary.CustomEvent
  7. {
  8. public class ShowLogToFrmEventArgs : EventArgs
  9. {
  10. private readonly string _showMsg = string.Empty;
  11. public ShowLogToFrmEventArgs(string msg)
  12. {
  13. _showMsg = msg;
  14. }
  15. public string ShowMsg
  16. {
  17. get { return _showMsg; }
  18. }
  19. }
  20. }