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