14 lines
335 B
C#
14 lines
335 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace AnP.Interface.Managers{
|
|
|
|
public interface I18NManagerInterface{
|
|
|
|
public string get(List<string> strings, object? inputs = null, List<string>? languages = null, int custom_options = 0);
|
|
|
|
public void add(object? items, int custom_options = 0);
|
|
|
|
}
|
|
|
|
} |