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