11 lines
381 B
C#
11 lines
381 B
C#
using System;
|
|
|
|
namespace Wino.Messaging.Client.Authorization
|
|
{
|
|
/// <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);
|
|
}
|