♻️ 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,12 @@
namespace DysonNetwork.Shared.Localization;
public class LocalizationEntry
{
public string Value { get; set; } = string.Empty;
public string? One { get; set; }
public string? Other { get; set; }
public bool IsPlural => One != null || Other != null;
}