Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created May 7, 2020 00:23
Show Gist options
  • Save httpmurilo/41575f10fa1374c4446095255f086afc to your computer and use it in GitHub Desktop.
Save httpmurilo/41575f10fa1374c4446095255f086afc to your computer and use it in GitHub Desktop.
Classe Curso
public class Curso
{
public int Id { get; set; }
public string Titulo { get; set; }
public string Descricao { get; set; }
public Autor Autor { get; set; }
public int AutorId { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment