fix some comments
This commit is contained in:
parent
6da426507e
commit
deccbc2b4b
|
@ -1,12 +1,13 @@
|
||||||
namespace AsterNET.Manager.Event
|
namespace AsterNET.Manager.Event
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The MusicOnHoldEvent event triggers when the music starts or ends playing the hold music.
|
/// The MusicOnHoldEvent event triggers when the music starts or ends playing the hold music.<br />
|
||||||
|
/// See <see target="_blank" href="LINK">LINK</see>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class MusicOnHoldEvent : ManagerEvent
|
public class MusicOnHoldEvent : ManagerEvent
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new instance of the class <see cref="MusicOnHoldEvent"/>.
|
/// Creates a new empty <see cref="MusicOnHoldEvent"/> using the given <see cref="ManagerConnection"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public MusicOnHoldEvent(ManagerConnection source) : base(source)
|
public MusicOnHoldEvent(ManagerConnection source) : base(source)
|
||||||
{
|
{
|
||||||
|
@ -21,14 +22,12 @@
|
||||||
/// Unknown
|
/// Unknown
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Unknown,
|
Unknown,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Music on hold is started.
|
/// Music on hold is started.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Start,
|
Start,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Music on hold is stoped.
|
/// Music on hold is stopped.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Stop
|
Stop
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue