mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
16 lines
325 B
C#
16 lines
325 B
C#
using System;
|
|
using System.Globalization;
|
|
|
|
namespace AntDesign.Docs.Localization
|
|
{
|
|
public interface ILanguageService
|
|
{
|
|
CultureInfo CurrentCulture { get; }
|
|
|
|
Resources Resources { get; }
|
|
|
|
event EventHandler<CultureInfo> LanguageChanged;
|
|
|
|
void SetLanguage(CultureInfo culture);
|
|
}
|
|
} |