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,13 @@
using System;
namespace Massmailer.Shared.Model
{
public class MassmailerRecipient
{
public string Address { get; set; }
public bool IsSent { get; set; }
public DateTime SentDate { get; set; }
}
}