10 lines
253 B
C#
10 lines
253 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);
|
|
}
|