Files
DP44/Common/DTS.Common/Dialogs/IPopupWindowActionAware.cs

13 lines
253 B
C#
Raw Permalink 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; }
}
}