16 lines
		
	
	
		
			523 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			523 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								using System;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace GestionIntegral.Api.Models.Distribucion
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  public class CambioParadaCanillaHistorial
							 | 
						||
| 
								 | 
							
								  {
							 | 
						||
| 
								 | 
							
								    public int Id_Registro { get; set; } // FK al registro original
							 | 
						||
| 
								 | 
							
								    public int Id_Canilla { get; set; }
							 | 
						||
| 
								 | 
							
								    public string Parada { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								    public DateTime VigenciaD { get; set; }
							 | 
						||
| 
								 | 
							
								    public DateTime? VigenciaH { get; set; } // Nullable
							 | 
						||
| 
								 | 
							
								    public int Id_Usuario { get; set; }
							 | 
						||
| 
								 | 
							
								    public DateTime FechaMod { get; set; }
							 | 
						||
| 
								 | 
							
								    public string TipoMod { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 |