namespace zero.Localization;
[RavenCollection("Translations")]
public class Translation : ZeroEntity
{
public Translation()
{
IsActive = true;
}
///
/// Value of the translation
///
public string Value { get; set; }
///
/// Display + input type
///
public TranslationDisplay Display { get; set; }
}
public enum TranslationDisplay
{
Text = 0,
HTML = 1
}