SurveyVista/Services/EmailSend/EmailStatistic.cs
2024-05-09 14:08:10 +02:00

19 lines
494 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Services.EmailSend
{
public class EmailStatistic
{
public int TotalEmails { get; set; }
public int Delivered { get; set; }
public int Opened { get; set; }
public int Clicked { get; set; }
public int Bounced { get; set; }
public int Blocked { get; set; }
public int MarkedAsSpam { get; set; }
}
}