Files
BeWoPlaner/Shared/Translation/ITranslator.cs
2017-11-07 09:29:49 +01:00

15 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.Translation
{
public interface ITranslator
{
String Translate(String input);
String Translate(String input, params Object[] args);
}
}