using System.Collections.Generic; namespace AsterNET { internal interface IParseSupport { Dictionary Attributes { get; } bool Parse(string key, string value); Dictionary ParseSpecial(Dictionary attributes); } }