Files
mixtape/zero/Localization/Models/Translation.cs
T
2024-10-21 11:59:05 +02:00

26 lines
432 B
C#

namespace zero.Localization;
public record Translation
{
/// <summary>
/// Key of the translation
/// </summary>
public string Key { get; set; }
/// <summary>
/// Value of the translation
/// </summary>
public string Value { get; set; }
/// <summary>
/// Display + input type
/// </summary>
public TranslationDisplay Display { get; set; }
}
public enum TranslationDisplay
{
Text = 0,
Html = 1
}