Skip to content

Instantly share code, notes, and snippets.

@dacanizares
Created August 22, 2016 17:14
Show Gist options
  • Save dacanizares/34dbcf9fc8fd116ac99af040fe502717 to your computer and use it in GitHub Desktop.
Save dacanizares/34dbcf9fc8fd116ac99af040fe502717 to your computer and use it in GitHub Desktop.
Primer modelo para el tutorial Introducción rápida a ASP.NET MVC de The Science of Code
public class Videojuego
{
public int Id { get; set; }
public string Nombre { get; set; }
public string Descripcion { get; set; }
public string ImagenUrl { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment