15 lines
326 B
C#
15 lines
326 B
C#
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; }
|
|
} |