asternet/Asterisk.2013/Asterisk.NET/IParseSupport.cs

11 lines
305 B
C#
Raw Normal View History

using System.Collections.Generic;
2014-01-08 14:16:39 +00:00
namespace AsterNET
{
2015-01-03 15:37:29 +00:00
internal interface IParseSupport
{
Dictionary<string, string> Attributes { get; }
bool Parse(string key, string value);
Dictionary<string, string> ParseSpecial(Dictionary<string, string> attributes);
}
}