2024-07-16 14:56:46 +02:00
|
|
|
|
using Wino.Core.Domain.Entities;
|
|
|
|
|
|
|
2024-07-17 22:36:10 +02:00
|
|
|
|
namespace Wino.Messaging.Client.Mails
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// When user asked to dismiss IMAP setup dialog.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="CompletedServerInformation"> Validated server information that is ready to be saved to database. </param>
|
|
|
|
|
|
public record ImapSetupDismissRequested(CustomServerInformation CompletedServerInformation = null);
|
|
|
|
|
|
}
|