add summaries

This commit is contained in:
Craig Roberts 2018-09-21 18:50:34 -04:00
parent 1769b2213d
commit 1772aa17dc
3 changed files with 8 additions and 5 deletions

View file

@ -1,5 +1,8 @@
namespace AsterNET.Manager namespace AsterNET.Manager
{ {
/// <summary>
/// Asterisk Version
/// </summary>
public enum AsteriskVersion public enum AsteriskVersion
{ {
ASTERISK_1_0 = 10, ASTERISK_1_0 = 10,

View file

@ -1,10 +1,10 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AsterNET.Manager namespace AsterNET.Manager
{ {
/// <summary>
/// IActionVariable
/// </summary>
interface IActionVariable interface IActionVariable
{ {
Dictionary<string, string> GetVariables(); Dictionary<string, string> GetVariables();

View file

@ -13,7 +13,7 @@ using AsterNET.IO;
namespace AsterNET.Manager namespace AsterNET.Manager
{ {
/// <summary> /// <summary>
/// Default implemention of the ManagerConnection interface. /// Default implementation of the ManagerConnection interface.
/// </summary> /// </summary>
public class ManagerConnection public class ManagerConnection
{ {