Merge from booking branch

This commit is contained in:
Paul Schneider 2015-11-17 22:22:59 +01:00
commit 9a2652739b
266 changed files with 12833 additions and 2337 deletions

View file

@ -37,6 +37,21 @@ namespace Yavsc.Model.Blogs
/// The intro.
/// </summary>
public string Intro;
public bool Truncated;
public BasePostInfo (BlogEntry be)
{
Title = be.Title;
Id = be.Id;
Posted = be.Posted;
Modified = be.Modified;
Intro = MarkdownHelper.MarkdownIntro (be.Content, out Truncated);
Photo = be.Photo;
Tags = be.Tags;
AllowedCircles = be.AllowedCircles;
Visible = be.Visible;
Rate = be.Rate;
}
}
}