Skip to content

Instantly share code, notes, and snippets.

@dacanizares
Created September 29, 2016 19:10
Show Gist options
  • Save dacanizares/857b377f5262cad54a611c1f9d538054 to your computer and use it in GitHub Desktop.
Save dacanizares/857b377f5262cad54a611c1f9d538054 to your computer and use it in GitHub Desktop.
public class Genero
{
public int Id { get; set; }
public string Nombre { get; set; }
public string Descripcion { get; set; }
public virtual IEnumerable<Videojuego> Videojuegos { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment