2024-07-16 14:56:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2024-07-17 22:36:10 +02:00
|
|
|
|
namespace Wino.Messaging.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);
|
|
|
|
|
|
}
|