Files
DP44/Common/DTS.Common/.svn/pristine/d7/d7174ca1a7ce84628a69d61d1ed4fb3c4f396b19.svn-base

13 lines
253 B
Plaintext
Raw Normal View History

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