Advertisement
Guest User

EmailSender.cs

a guest
Nov 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. using System.Threading.Tasks;
  2.  
  3. namespace WSGestaoInterv.Services
  4. {
  5.     public interface IEmailSender
  6.     {
  7.         Task SendEmailAsync(string email, string tipo, string subject, dynamic message, string token = "");
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement