Integracion_DGA/SHARED/DTO/LogProceso.cs
bcastrogallardo b52be74bfa ajustes
2025-07-17 09:22:55 -04:00

14 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTO
{
public class LogProceso
{
public string NombreProceso { get; set; } = string.Empty;
public DateTime FechaEjecucion { get; set; }
}
}