Remove redundant assignment

This commit is contained in:
Robert Marshall 2019-04-28 11:15:17 +01:00
parent 3064dd8d25
commit a47f18533b

View file

@ -10,7 +10,6 @@ namespace Website.ViewModels
public BlogPostViewModel(BlogPost blogPost)
{
Title = blogPost.Title;
Content = Markdown.ToHtml(blogPost.Content).Trim();
Timestamp = blogPost.Timestamp;
Url = blogPost.Url;