Files
DysonNetwork/DysonNetwork.Shared/Localization/LocalizationEntry.cs
2026-02-04 23:59:41 +08:00

13 lines
279 B
C#

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;
}