Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ITranslatable.cs
1using System.Threading.Tasks;
2
4{
8 public interface ITranslatable
9 {
15 Task<string[]> GetTranslatableTexts(string Language);
16
22 void SetTranslatableTexts(string[] Texts, string Language);
23 }
24}