示例#1
0
 public RedditPost(RedditPostExpanded expandedPost)
 {
     Id     = expandedPost.id;
     Author = expandedPost.author;
     Title  = expandedPost.title;
     Flair  = expandedPost.link_flair_text;
 }
示例#2
0
 public static Data.Post ToPost(this RedditPostExpanded expandedPost, string kind)
 {
     return(new Data.Post
     {
         Id = expandedPost.id,
         Permalink = expandedPost.permalink,
         Fullname = expandedPost.name,
         Author = expandedPost.author,
         Title = expandedPost.title,
         Flair = expandedPost.link_flair_text,
         CreateDate = DatabaseConstants.EpochTime.AddSeconds(Convert.ToInt64(expandedPost.created_utc.Substring(0, expandedPost.created_utc.Length - 2))),
         Kind = kind
     });
 }