11 lines
376 B
C#
11 lines
376 B
C#
|
|
using GestionIntegral.Api.Dtos.Comunicaciones;
|
||
|
|
|
||
|
|
public class LoteDeEnvioResumenDto
|
||
|
|
{
|
||
|
|
public int IdLoteDeEnvio { get; set; }
|
||
|
|
public required string Periodo { get; set; }
|
||
|
|
public int TotalCorreos { get; set; }
|
||
|
|
public int TotalEnviados { get; set; }
|
||
|
|
public int TotalFallidos { get; set; }
|
||
|
|
public List<EmailLogDto> ErroresDetallados { get; set; } = new();
|
||
|
|
}
|