ConditionalRule.cs 257 Bytes
Newer Older
Eric Domke's avatar
Eric Domke committed
1
2

// ReSharper disable once CheckNamespace
Matt Schneeberger's avatar
Matt Schneeberger committed
3
namespace Svg.ExCSS
Eric Domke's avatar
Eric Domke committed
4
5
6
7
8
9
10
11
12
13
{
    public abstract class ConditionalRule : AggregateRule
    {
        public virtual string Condition
        {
            get { return string.Empty; }
            set { }
        }
    }
}