72ddf45b9f
enable XML documentation output (for intellisense when using as a dll, eg Nuget) update Sandcastle documentation (allows enabling Git Hub Pages, see: https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/ , uses '/docs' folder)
15 lines
478 B
C#
15 lines
478 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// A ParkedCallsCompleteEvent is triggered after all parked calls have been reported in response to a ParkedCallsAction.
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Action.ParkedCallsAction"/>
|
|
/// <seealso cref="Manager.Event.ParkedCallEvent"/>
|
|
public class ParkedCallsCompleteEvent : ResponseEvent
|
|
{
|
|
public ParkedCallsCompleteEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
} |