Files
DP44/Common/DTS.Common/Dialogs/IPopupWindowActionAware.cs
2026-04-17 14:55:32 -04:00

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; }
}
}