2024-11-10 23:28:25 +01:00
|
|
|
using Wino.Core.Domain.Entities.Shared;
|
2024-08-05 00:36:26 +02:00
|
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
|
using Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Messaging.Server;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// For delegating authentication/authorization to the server app.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public record AuthorizationRequested(MailProviderType MailProviderType, MailAccount CreatedAccount, bool ProposeCopyAuthorizationURL) : IClientMessage;
|