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

9 lines
308 B
C#
Raw Normal View History

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>;
}