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