ticket-system/source/ticketAPI/api/Interfaces/IEmailService.cs
Tara Wilson 84431ede36 Adding Emailing
Adding Email Verification on Patron Form
Addressing #1 - tickets will span next to ticket form
2024-12-18 15:59:36 -05:00

9 lines
161 B
C#

using models.Core;
using models.Response;
namespace api.Interfaces;
public interface IEmailService
{
void SendEmail(Ticket ticket, EventDetails details);
}