Files
Wino-Mail/Wino.Messages/UI/CopyAuthURLRequested.cs
Burak Kaan Köse 56bfbeca58 SSL Handshake Prompt for IMAP (#381)
* Fix an incorrect namespace for copy auth url request.

* Implemented SSL handshake process for testing imap configuration.

* Implemented SSL handshake process for testing imap configuration.

* Replace certificate PathIcon with WinoFontIcon in XAML.
2024-09-14 21:51:43 +02:00

9 lines
308 B
C#

namespace Wino.Messaging.UI
{
/// <summary>
/// When authenticators are proposed to copy the auth URL on the UI.
/// </summary>
/// <param name="AuthURL">URL to be copied to clipboard.</param>
public record CopyAuthURLRequested(string AuthURL) : UIMessageBase<CopyAuthURLRequested>;
}