Files
Wino-Mail/Wino.Core.Domain/Interfaces/IProviderDetail.cs

14 lines
320 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using Wino.Core.Domain.Enums;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Interfaces;
public interface IProviderDetail
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
MailProviderType Type { get; }
SpecialImapProvider SpecialImapProvider { get; }
string Name { get; }
string Description { get; }
string ProviderImage { get; }
bool IsSupported { get; }
2024-04-18 01:44:37 +02:00
}