| 1234567891011121314151617 |
-
- using Muchinfo.MTPClient.Infrastructure.Interfaces;
- namespace Muchinfo.MTPClient.Infrastructure.MessengerArgs
- {
- public class AddContentPageArgs
- {
- public AddContentPageArgs(WindowItem item, IWindow window)
- {
- WindowItem = item;
- this.ContentWindow = window;
- }
- public WindowItem WindowItem { get; set; }
- public IWindow ContentWindow { get; set; }
- }
- }
|