2024-07-16 14:56:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2024-07-16 23:28:57 +02:00
|
|
|
|
namespace Wino.Messages.Client.Authorization
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When Google authentication makes a callback to the app via protocol activation to the app.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="AuthorizationResponseUri">Callback Uri that Google returned.</param>
|
|
|
|
|
|
public record ProtocolAuthorizationCallbackReceived(Uri AuthorizationResponseUri);
|
|
|
|
|
|
}
|