fix some comments
This commit is contained in:
parent
6da426507e
commit
deccbc2b4b
|
@ -1,12 +1,13 @@
|
|||
namespace AsterNET.Manager.Event
|
||||
{
|
||||
/// <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>
|
||||
public class MusicOnHoldEvent : ManagerEvent
|
||||
{
|
||||
/// <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>
|
||||
public MusicOnHoldEvent(ManagerConnection source) : base(source)
|
||||
{
|
||||
|
@ -21,14 +22,12 @@
|
|||
/// Unknown
|
||||
/// </summary>
|
||||
Unknown,
|
||||
|
||||
/// <summary>
|
||||
/// Music on hold is started.
|
||||
/// </summary>
|
||||
Start,
|
||||
|
||||
/// <summary>
|
||||
/// Music on hold is stoped.
|
||||
/// Music on hold is stopped.
|
||||
/// </summary>
|
||||
Stop
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue