using System; namespace AsterNET.FastAGI.Command { /// /// Turns off music on hold on the current channel.
/// Always returns 0. ///
public class SetMusicOffCommand : AGICommand { /// Creates a new SetMusicOffCommand. public SetMusicOffCommand() { } public override string BuildCommand() { return "SET MUSIC OFF"; } } }