Getting info on email sent

This commit is contained in:
Paul Schneider 2018-07-12 18:11:29 +02:00
commit 18b5297d71
6 changed files with 28 additions and 13 deletions

View file

@ -0,0 +1,10 @@
namespace Yavsc.Abstract.Manage
{
public class EmailSentViewModel
{
public string EMail { get; set; }
public string MessageId { get; set; }
public bool Sent { get; set; }
public string ErrorMessage { get; set; }
}
}