2024-07-17 22:36:10 +02:00
|
|
|
|
namespace Wino.Messaging.Client.Mails
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When existing a new html is requested to be rendered due to mail selection or signature.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="HtmlBody">HTML to render in WebView2.</param>
|
|
|
|
|
|
public record HtmlRenderingRequested(string HtmlBody);
|
|
|
|
|
|
}
|