2025-02-15 12:53:32 +01:00
|
|
|
using Wino.Core.Domain.Entities.Shared;
|
|
|
|
|
using Wino.Core.Domain.Models.Accounts;
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface ISpecialImapProviderConfigResolver
|
2025-02-15 12:53:32 +01:00
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
CustomServerInformation GetServerInformation(MailAccount account, AccountCreationDialogResult dialogResult);
|
2025-02-15 12:53:32 +01:00
|
|
|
}
|