Skip to content

Instantly share code, notes, and snippets.

@dkreider
Created March 15, 2021 19:22
Show Gist options
  • Save dkreider/bacb3ea8833afad3f75e9cbd656813c7 to your computer and use it in GitHub Desktop.
Save dkreider/bacb3ea8833afad3f75e9cbd656813c7 to your computer and use it in GitHub Desktop.
namespace GenericRepositoryDemo.Entities
{
public class Post : BaseModel
{
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
public Blog Blog { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment