示例#1
0
文件: Post.cs 项目: pikzen/LBCParser
 public Post(SearchResult baseInfo)
 {
     this.Link = baseInfo.Link;
     this.Id = baseInfo.Id;
     this.Title = baseInfo.Title;
     this.Date = baseInfo.Date;
     this.Category = baseInfo.Category;
     this.Location = baseInfo.Location;
     this.Price = baseInfo.Price;
     this.Properties = new List<Tuple<string, string>>();
     this.Images = new List<Bitmap>();
 }