13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
|
|
using System.Windows;
|
||
|
|
using Microsoft.Practices.Prism.Interactivity.InteractionRequest;
|
||
|
|
|
||
|
|
namespace DTS.Common.Dialogs
|
||
|
|
{
|
||
|
|
public interface IPopupWindowActionAware
|
||
|
|
{
|
||
|
|
Window HostWindow { get; set; }
|
||
|
|
|
||
|
|
Notification HostNotification { get; set; }
|
||
|
|
}
|
||
|
|
}
|