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
{
/// <summary>
/// Asterisk Version
/// </summary>
public enum AsteriskVersion
{
ASTERISK_1_0 = 10,

View file

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

View file

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