14 lines
		
	
	
		
			437 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			437 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | using System; | ||
|  | 
 | ||
|  | namespace GestionIntegral.Api.Models.Distribucion | ||
|  | { | ||
|  |     public class SalidaOtroDestino | ||
|  |     { | ||
|  |         public int IdParte { get; set; } // Id_Parte (PK, Identity) | ||
|  |         public int IdPublicacion { get; set; } | ||
|  |         public int IdDestino { get; set; } // FK a dist_dtOtrosDestinos | ||
|  |         public DateTime Fecha { get; set; } | ||
|  |         public int Cantidad { get; set; } | ||
|  |         public string? Observacion { get; set; } | ||
|  |     } | ||
|  | } |