Merge from booking branch
This commit is contained in:
parent
25906d0227
commit
9a2652739b
266 changed files with 12833 additions and 2337 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue