using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.MachineStudio.Common.Speech { public class LiteSpeechProvider : ISpeechProvider { public bool Mute { get; set; } public void SpeakError(string text) { } public void SpeakInfo(string text) { } } }