У меня есть класс Interface в корне форм Xamarin в папке Services.
namespace FirstPrismApp.Services
{
public interface ITextToSpeech
{
void Speak(string text);
}
}
Я не могу использовать класс Interface в других включенных проектах, таких как Android, IOS и UWP.
![enter image description here](https://i.stack.imgur.com/UzYpX.png)