Files
DP44/Common/DTS.CommonCore/.svn/pristine/6b/6bcf892569326cd6c0df8a4c48adb8e5c458a35d.svn-base

13 lines
287 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Windows;
using Microsoft.Practices.Prism.Interactivity.InteractionRequest;
namespace DTS.Common.Dialogs
{
public interface IPopupWindowActionAware
{
Window HostWindow { get; set; }
Notification HostNotification { get; set; }
}
}