using System; using Wino.Mail.WinUI.Models; namespace Wino.Mail.WinUI.Interfaces; public interface IPopoutClient { bool SupportsPopOut { get; } event EventHandler PopOutRequested; event EventHandler HostActionRequested; HostedPopoutDescriptor GetPopoutDescriptor(); void OnPopoutStateChanged(bool isPoppedOut); }