* Fix an incorrect namespace for copy auth url request. * Implemented SSL handshake process for testing imap configuration. * Implemented SSL handshake process for testing imap configuration. * Replace certificate PathIcon with WinoFontIcon in XAML.
19 lines
545 B
C#
19 lines
545 B
C#
using Wino.Core.Domain.Models.AutoDiscovery;
|
|
|
|
namespace Wino.Core.Domain.Exceptions
|
|
{
|
|
public class ImapConnectionFailedPackage
|
|
{
|
|
public ImapConnectionFailedPackage(string errorMessage, string protocolLog, AutoDiscoverySettings settings)
|
|
{
|
|
ErrorMessage = errorMessage;
|
|
ProtocolLog = protocolLog;
|
|
Settings = settings;
|
|
}
|
|
|
|
public AutoDiscoverySettings Settings { get; }
|
|
public string ErrorMessage { get; set; }
|
|
public string ProtocolLog { get; }
|
|
}
|
|
}
|