You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
334 B
C#
12 lines
334 B
C#
10 months ago
|
namespace DS.Module.MultiLanguage;
|
||
|
|
||
|
public interface IMultiLanguageService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 获取多语言配置信息
|
||
|
/// </summary>
|
||
|
/// <param name="multiCode"></param>
|
||
|
/// <param name="language"></param>
|
||
|
/// <returns></returns>
|
||
|
public string GetMultiLanguageInfo(string multiCode,string language);
|
||
|
}
|