Blacker.Scraper.Models.ChapterRecord.ChapterRecord C# (CSharp) Method

ChapterRecord() public method

public ChapterRecord ( System.Guid scraper, string chapterId ) : System
scraper System.Guid
chapterId string
return System
        public ChapterRecord(Guid scraper, string chapterId)
        {
            if (String.IsNullOrEmpty(chapterId))
                throw new ArgumentException("Chapter identifier cannot be null or empty.", "chapterId");

            ChapterId = chapterId;
            Scraper = scraper;
        }
ChapterRecord