Blacker.MangaScraper.ViewModel.SettingsWindowViewModel.ScraperInfo.ScraperInfo C# (CSharp) Метод

ScraperInfo() публичный Метод

public ScraperInfo ( IScraper scraper, bool enabled ) : System
scraper IScraper
enabled bool
Результат System
            public ScraperInfo(IScraper scraper, bool enabled)
            {
                if (scraper == null)
                    throw new ArgumentNullException("scraper");

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