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