19 lines
730 B
C#
19 lines
730 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Distribucion // O Auditoria
|
||
|
|
{
|
||
|
|
public class CambioParadaHistorialDto
|
||
|
|
{
|
||
|
|
public int Id_Registro { get; set; }
|
||
|
|
public int Id_Canilla { get; set; }
|
||
|
|
public string NombreCanilla { get; set; } = string.Empty; // Para mostrar
|
||
|
|
public string Parada { get; set; } = string.Empty; // Dirección de la parada en ese momento
|
||
|
|
public DateTime VigenciaD { get; set; }
|
||
|
|
public DateTime? VigenciaH { get; set; }
|
||
|
|
|
||
|
|
public int Id_Usuario { get; set; }
|
||
|
|
public string NombreUsuarioModifico { get; set; } = string.Empty;
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|