Files
Wino-Mail/Wino.Messages/Server/CopyAuthURLRequested.cs

11 lines
338 B
C#
Raw Normal View History

using Wino.Messaging.UI;
namespace Wino.Messaging.Server
{
/// <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>;
}