namespace Notify.Models; /// /// 一次弹窗请求(后续由 hook / named pipe 投递) /// public sealed class ToastRequest { public required string Title { get; init; } public required string Message { get; init; } /// /// true = 需要输入(黄色边框),false = 任务完成(橙色边框) /// public bool InputMode { get; init; } /// /// true = 常驻:不自动消失,只能点击 / ✕ 关闭 /// public bool Sticky { get; init; } }