TFS_ANTIGUO/TPAtesa_RecHuma/PruebaAzureAD/Models/EstadoViewModel.cs
2026-06-26 10:14:39 -06:00

9 lines
214 B
C#

namespace PruebaAzureAD.Models
{
public class EstadoViewModel
{
public int IdEstado { get; set; }
public string Descripcion { get; set; }
public bool Estado { get; set; }
}
}