Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/e8792459a82baeb7c5ffe85ffdc97513 to your computer and use it in GitHub Desktop.
Save hbulens/e8792459a82baeb7c5ffe85ffdc97513 to your computer and use it in GitHub Desktop.
public class Blog
{
public int BlogId { get; set; }
public string Name { get; set; }
public string Url { get; set; }
public string Tags { get; set; }
public ICollection<Post> Posts { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment