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