AddContentPageArg.cs 429 B

1234567891011121314151617
  1. 
  2. using Muchinfo.MTPClient.Infrastructure.Interfaces;
  3. namespace Muchinfo.MTPClient.Infrastructure.MessengerArgs
  4. {
  5. public class AddContentPageArgs
  6. {
  7. public AddContentPageArgs(WindowItem item, IWindow window)
  8. {
  9. WindowItem = item;
  10. this.ContentWindow = window;
  11. }
  12. public WindowItem WindowItem { get; set; }
  13. public IWindow ContentWindow { get; set; }
  14. }
  15. }