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