Get a blog post (testing mysql connection)

This commit is contained in:
Robert Marshall 2019-04-14 11:35:40 +01:00
parent 19c3c49f4d
commit 5a0d0933ce
6 changed files with 20 additions and 7 deletions

View file

@ -2,6 +2,8 @@ namespace Website.Models
{
public class BlogPost
{
public int Id { get; internal set; }
public int PostId { get; set; }
public string PostTitle { get; set; }
public string Post_Title { get; set; }
}
}