Implemented initial version for popping out window for rendering and compose pages
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace Wino.Mail.WinUI.Models;
|
||||
|
||||
public sealed class PopoutHostActionRequestedEventArgs : EventArgs
|
||||
{
|
||||
public PopoutHostActionRequestedEventArgs(PopoutHostActionKind actionKind, Type? targetPageType = null, Guid? targetMailUniqueId = null)
|
||||
{
|
||||
ActionKind = actionKind;
|
||||
TargetPageType = targetPageType;
|
||||
TargetMailUniqueId = targetMailUniqueId;
|
||||
}
|
||||
|
||||
public PopoutHostActionKind ActionKind { get; }
|
||||
public Type? TargetPageType { get; }
|
||||
public Guid? TargetMailUniqueId { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user