Skip to content

Instantly share code, notes, and snippets.

@bonomali
Forked from dacanizares/Genero.cs
Created July 25, 2019 11:24
Show Gist options
  • Save bonomali/db9b404eb89efdfdb80ae4846d19c7a7 to your computer and use it in GitHub Desktop.
Save bonomali/db9b404eb89efdfdb80ae4846d19c7a7 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