AggregateRule.cs 366 Bytes
Newer Older
Eric Domke's avatar
Eric Domke committed
1
using System.Collections.Generic;
2
using Svg.ExCSS.Model;
Eric Domke's avatar
Eric Domke committed
3
4

// ReSharper disable once CheckNamespace
5
namespace Svg.ExCSS
Eric Domke's avatar
Eric Domke committed
6
7
8
9
10
11
12
13
14
15
16
{
    public abstract class AggregateRule : RuleSet, ISupportsRuleSets
    {
        protected AggregateRule()
        {
            RuleSets = new List<RuleSet>();
        }

        public List<RuleSet> RuleSets { get; private set; }
    }
}