IToString.cs 136 Bytes
Newer Older
Matt Schneeberger's avatar
Matt Schneeberger committed
1
namespace Svg.ExCSS
Eric Domke's avatar
Eric Domke committed
2
3
4
5
6
7
{
    public interface IToString
    {
        string ToString(bool friendlyFormat, int indentation = 0);
    }
}