示例#1
0
文件: BlogStory.cs 项目: BionStt/blog
 public void Update(BlogStory target)
 {
     Title          = target.Title;
     Description    = target.Description;
     SeoDescription = target.SeoDescription;
     SeoKeywords    = target.SeoKeywords;
     Content        = target.Content;
     StoryImageUrl  = target.StoryImageUrl;
     StoryThumbUrl  = target.StoryThumbUrl;
     Alias          = target.Alias;
     AccessToken    = target.AccessToken;
     Language       = target.Language;
 }
示例#2
0
 public BlogStoryTag(BlogStory blogStory, Tag tag)
 {
     BlogStory = blogStory;
     Tag       = tag;
 }