Refinamiento de permisos y ajustes en controles. Añade gestión sobre saldos y visualización. Entre otros..
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user