asternet/Asterisk.2013/Asterisk.NET/IParseSupport.cs
2014-01-08 14:16:39 +00:00

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);
}
}