14 lines
301 B
C#
14 lines
301 B
C#
|
|
using Wino.Core.Domain.Enums;
|
|||
|
|
|
|||
|
|
namespace Wino.Core.Domain.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IProviderDetail
|
|||
|
|
{
|
|||
|
|
MailProviderType Type { get; }
|
|||
|
|
string Name { get; }
|
|||
|
|
string Description { get; }
|
|||
|
|
string ProviderImage { get; }
|
|||
|
|
bool IsSupported { get; }
|
|||
|
|
}
|
|||
|
|
}
|