16 lines
		
	
	
		
			537 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			537 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								using System;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace GestionIntegral.Api.Dtos.Contables
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public class SaldoGestionDto
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        public int IdSaldo { get; set; }
							 | 
						||
| 
								 | 
							
								        public string Destino { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								        public int IdDestino { get; set; }
							 | 
						||
| 
								 | 
							
								        public string NombreDestinatario { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								        public int IdEmpresa { get; set; }
							 | 
						||
| 
								 | 
							
								        public string NombreEmpresa { get; set; } = string.Empty;
							 | 
						||
| 
								 | 
							
								        public decimal Monto { get; set; }
							 | 
						||
| 
								 | 
							
								        public DateTime FechaUltimaModificacion { get; set; }
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |