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

14 lines
291 B
C#

using Wino.Domain.Enums;
namespace Wino.Domain.Interfaces
{
public interface IProviderDetail
{
MailProviderType Type { get; }
string Name { get; }
string Description { get; }
string ProviderImage { get; }
bool IsSupported { get; }
}
}