using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.MachineStudio.Common.Speech { /// /// Represents a text to speech engine. /// public interface ISpeechProvider { /// /// Gets or sets a value indicating whether this is mute. /// bool Mute { get; set; } /// /// Speaks the specified text associated with an information sound. /// /// The text. void SpeakInfo(String text); /// /// Speaks the specified text associated with an error sound. /// /// The text. void SpeakError(String text); } }