22 lines
483 B
C#
22 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Services.EmailSend
|
|
{
|
|
public class EmailToSend
|
|
{
|
|
public EmailToSend(string to, string subject, string body)
|
|
{
|
|
To = to;
|
|
Subject = subject;
|
|
Body = body;
|
|
}
|
|
|
|
public string To { get; set; }
|
|
public string Subject { get; set; }
|
|
public string Body { get; set; }
|
|
}
|
|
}
|