Adding Email Verification on Patron Form Addressing #1 - tickets will span next to ticket form
9 lines
161 B
C#
9 lines
161 B
C#
using models.Core;
|
|
using models.Response;
|
|
|
|
namespace api.Interfaces;
|
|
|
|
public interface IEmailService
|
|
{
|
|
void SendEmail(Ticket ticket, EventDetails details);
|
|
} |