11 lines
305 B
C#
11 lines
305 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsterNET
|
|
{
|
|
internal interface IParseSupport
|
|
{
|
|
Dictionary<string, string> Attributes { get; }
|
|
bool Parse(string key, string value);
|
|
Dictionary<string, string> ParseSpecial(Dictionary<string, string> attributes);
|
|
}
|
|
} |