예제 #1
0
 public KissMangaSeries(string siteUri, string name, string tag, MangaSite site, ProgressStatus status)
 {
     this.SiteUri = siteUri;
     this.Tag = tag;
     this.Name = name.Trim().RemoveInvalidChars();
     this.FullText = this.Name + " " + this.Tag;
     this.HomeSite = site;
     this.Status = (byte)status;
     SeriesFolderPath ="Sites\\"+ HomeSite.Name + "\\" + Name + "\\";
 }
예제 #2
0
 public BlogTruyenSeries(string siteUri, string name, string tag, MangaSite site, ProgressStatus status)
 {
     this.SiteUri = siteUri;
     this.Tag = tag;
     this.Name = name.Trim().RemoveInvalidChars();
     this.FullText = Name.RemoveVietnameseSign() + " " + this.Tag;
     this.HomeSite = site;
     this.Status = (byte)status;
     seriesPath = HomeSite.Name + "\\" + Name + "\\";
 }
예제 #3
0
 public Manga24hSeries(string siteUri, string name, string tag, MangaSite site, ProgressStatus status)
 {
     base.SiteUri = siteUri;
     base.Tag = tag;
     base.Name = Utility.RemoveInvalidChars(name.Trim());
     this.FullText = Name.RemoveVietnameseSign() + " " + this.Tag;
     this.HomeSite = site;
     base.Status = (byte)status;
     base.SeriesFolderPath = @"Sites\" + this.HomeSite.Name + @"\" + base.Name + @"\";
     base.Discriminator = "Manga24hSeries";
 }