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

14 lines
291 B
C#
Raw Normal View History

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