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