|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
using webapi.Infrastructure.Model;
|
|
|
|
namespace webapi.Infrastructure.Services
|
|
{
|
|
public interface IConfigureService
|
|
{
|
|
Task<IEmailSettings> GetEmailSettings();
|
|
}
|
|
} |