IMailService.cs 148 B

1234567
  1. namespace DutchTreat.Services
  2. {
  3. public interface IMailService
  4. {
  5. void SendMessage(string to, string subject, string body);
  6. }
  7. }