using System.Collections.Generic; using ExCSS.Model; // ReSharper disable once CheckNamespace namespace ExCSS { public abstract class AggregateRule : RuleSet, ISupportsRuleSets { protected AggregateRule() { RuleSets = new List(); } public List RuleSets { get; private set; } } }