Counter
Represents a CSS counter.
namespace AngleSharp.Css.Values
{
public sealed class Counter
{
private readonly string _identifier;
private readonly string _listStyle;
private readonly string _separator;
public string CounterIdentifier => _identifier;
public string ListStyle => _listStyle;
public string DefinedSeparator => _separator;
public Counter(string identifier, string listStyle, string separator)
{
_identifier = identifier;
_listStyle = listStyle;
_separator = separator;
}
}
}