mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-11 02:45:19 +03:00
14 lines
261 B
C#
14 lines
261 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace NAPS2.ImportExport.Email
|
|
{
|
|
public interface IEmailProviderFactory
|
|
{
|
|
IEmailProvider Create(EmailProviderType type);
|
|
|
|
IEmailProvider Default { get; }
|
|
}
|
|
}
|