PathContentInViewEventArgs.cs 452 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Test6_mod.ViewModels.Event
  7. {
  8. public class PathContentInViewEventArgs : EventArgs
  9. {
  10. public string Msg { get; private set; }
  11. public string HTML { get; private set; }
  12. public PathContentInViewEventArgs(string m, string h)
  13. {
  14. Msg = m;
  15. HTML = h;
  16. }
  17. }
  18. }