2024-09-14 05:08:30 +02:00
|
|
|
|
namespace Wino.Messaging.UI
|
2024-09-14 01:17:03 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <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>;
|
|
|
|
|
|
}
|