2024-04-18 01:44:37 +02:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Wino.Core.Domain.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IImapTestService
|
|
|
|
|
|
{
|
2024-09-14 21:51:43 +02:00
|
|
|
|
Task TestImapConnectionAsync(CustomServerInformation serverInformation, bool allowSSLHandShake);
|
2024-04-18 01:44:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|