♻️ Refactored localization service

This commit is contained in:
2026-02-04 23:59:41 +08:00
parent c1669286f4
commit 9b6a62ec66
30 changed files with 530 additions and 369 deletions

View File

@@ -0,0 +1,6 @@
namespace DysonNetwork.Shared.Localization;
public interface ILocalizationService
{
string Get(string key, string? locale = null, object? args = null);
}