TFS_ANTIGUO/TPAtesa_RecHuma/PruebaAzureAD/Models/EstadoViewModel.cs

10 lines
214 B
C#
Raw Permalink Normal View History

2026-06-26 10:14:39 -06:00
namespace PruebaAzureAD.Models
{
public class EstadoViewModel
{
public int IdEstado { get; set; }
public string Descripcion { get; set; }
public bool Estado { get; set; }
}
}