Files
Wino-Mail/Wino.Core.Domain/Interfaces/IImapTestService.cs
Burak Kaan Köse d1d6f12f05 Ground work for Wino Calendar. (#475)
Wino Calendar abstractions.
2024-11-10 23:28:25 +01:00

11 lines
271 B
C#

using System.Threading.Tasks;
using Wino.Core.Domain.Entities.Shared;
namespace Wino.Core.Domain.Interfaces
{
public interface IImapTestService
{
Task TestImapConnectionAsync(CustomServerInformation serverInformation, bool allowSSLHandShake);
}
}