mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-13 20:05:01 +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();
|
|
}
|