Backend login and register
This commit is contained in:
15
src/Application/Models/EmailRequest.cs
Normal file
15
src/Application/Models/EmailRequest.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Application.Models;
|
||||
|
||||
public class EmailRequest
|
||||
{
|
||||
public EmailRequest(string to, string subject, string content)
|
||||
{
|
||||
To = to;
|
||||
Subject = subject;
|
||||
Content = content;
|
||||
}
|
||||
|
||||
public string To { get; set; }
|
||||
public string Subject { get; set; }
|
||||
public string Content { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user