mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
8 lines
154 B
C#
8 lines
154 B
C#
using Utilities.Classes;
|
|
|
|
namespace Utilities.Interfaces;
|
|
|
|
public interface IEmailService
|
|
{
|
|
Task<bool> SendEmailAsync(EmailMessage emailMessage);
|
|
} |