mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-31 10:47:31 +08:00
13 lines
224 B
C#
13 lines
224 B
C#
using System.Windows.Media;
|
|
|
|
namespace MicaSetup.Services;
|
|
|
|
public interface IMuiLanguageService
|
|
{
|
|
public FontFamily GetFontFamily();
|
|
|
|
public string GetXamlUriString();
|
|
|
|
public string GetLicenseUriString();
|
|
}
|