namespace zero.Core.Entities { public class Translation : ZeroEntity { /// /// Value of the translation /// public string Value { get; set; } /// /// Display + input type /// public TranslationDisplay Display { get; set; } } public enum TranslationDisplay { Text = 0, HTML = 1 } }