namespace zero.Core.Entities { public class Translation : ZeroEntity, ILanguageAwareEntity, IAppAwareEntity, IZeroDbConventions { /// public string AppId { get; set; } /// public string LanguageId { get; set; } /// /// Key which can be used to query translations /// 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 } }