asternet/Asterisk.2013/Asterisk.NET/IParseSupport.cs
2015-01-03 15:37:29 +00:00

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