IStyleDeclaration.cs 123 Bytes
Newer Older
Eric Domke's avatar
Eric Domke committed
1
2
3
4
5
6
7
namespace ExCSS.Model
{
    interface ISupportsDeclarations
    {
        StyleDeclaration Declarations { get; }
    }
}