Skip to content

Instantly share code, notes, and snippets.

View httpmurilo's full-sized avatar
💭
I may be slow to respond.

Murilo httpmurilo

💭
I may be slow to respond.
View GitHub Profile
@httpmurilo
httpmurilo / Curso.cs
Created May 7, 2020 00:23
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; }
}