13 lines
279 B
C#
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;
|
|
}
|