Implementación AnomalIA - Fix de dropdowns y permisos.
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 5m17s
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 5m17s
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace GestionIntegral.Api.Dtos.Distribucion
|
||||
{
|
||||
public class CanillaDropdownDto
|
||||
{
|
||||
public int IdCanilla { get; set; }
|
||||
public int? Legajo { get; set; }
|
||||
public string NomApe { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace GestionIntegral.Api.Dtos.Distribucion
|
||||
{
|
||||
public class OtroDestinoDropdownDto
|
||||
{
|
||||
public int IdDestino { get; set; }
|
||||
public string Nombre { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -4,6 +4,7 @@ namespace GestionIntegral.Api.Dtos.Distribucion
|
||||
{
|
||||
public int IdPublicacion { get; set; }
|
||||
public string Nombre { get; set; } = string.Empty;
|
||||
public bool Habilitada { get; set; } // Simplificamos a bool, el backend manejará el default si es null
|
||||
public string NombreEmpresa { get; set; } = string.Empty;
|
||||
public bool Habilitada { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user