Blacker.MangaScraper.ViewModel.SettingsWindowViewModel.ScraperInfo.ScraperInfo C# (CSharp) Method

ScraperInfo() public method

public ScraperInfo ( IScraper scraper, bool enabled ) : System
scraper IScraper
enabled bool
return System
            public ScraperInfo(IScraper scraper, bool enabled)
            {
                if (scraper == null)
                    throw new ArgumentNullException("scraper");

                _scraper = scraper;
                Enabled = enabled;
            }
SettingsWindowViewModel.ScraperInfo