11 lines
200 B
C#
11 lines
200 B
C#
using PortBlog.API.Entities;
|
|
using PortBlog.API.Models;
|
|
|
|
namespace PortBlog.API.Services.Contracts
|
|
{
|
|
public interface IMailService
|
|
{
|
|
Task SendAsync(MessageSendDto message);
|
|
}
|
|
}
|