using System; using Wino.Core.Domain.Interfaces; namespace Wino.Messaging.Client.Authorization { /// /// When Google authentication makes a callback to the app via protocol activation to the app. /// App will send this message back to server to continue authorization there. /// /// Callback Uri that Google returned. public record ProtocolAuthorizationCallbackReceived(Uri AuthorizationResponseUri) : IClientMessage; }