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