Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Distribucion/PublicacionDto.cs
dmolinari 3e1ac6f742
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 6m18s
Fix: Cambios solicitados. Parte 1
2025-07-18 21:46:07 -03:00

13 lines
479 B
C#

namespace GestionIntegral.Api.Dtos.Distribucion
{
public class PublicacionDto
{
public int IdPublicacion { get; set; }
public string Nombre { get; set; } = string.Empty;
public string? Observacion { get; set; }
public int IdEmpresa { get; set; }
public string NombreEmpresa { get; set; } = string.Empty; // Para mostrar en UI
public bool CtrlDevoluciones { get; set; }
public bool? Habilitada { get; set; }
}
}