10 lines
272 B
C#
10 lines
272 B
C#
namespace PruebaAzureAD.Models
|
|
{
|
|
public class UniversidadViewModel
|
|
{
|
|
public int IdUniversidad { get; set; }
|
|
public string Abreviatura { get; set; }
|
|
public string Descripcion { get; set; }
|
|
public bool Estado { get; set; }
|
|
}
|
|
}
|