logic added

This commit is contained in:
2021-02-04 22:45:41 +01:00
parent e5098c02d9
commit bf57e3a983
11 changed files with 150 additions and 28 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections.Generic;
namespace Massmailer.Shared.Model
{
public class MassmailerProject
{
public MassmailerProject()
{
this.Recipients = new List<MassmailerRecipient>();
}
public List<MassmailerRecipient> Recipients { get; set; }
public string Subject { get; set; }
public string Body { get; set; }
}
}