using System.Runtime.Serialization; namespace Umbraco.Web.Models.ContentEditing { /// /// The dictionary translation overview display. /// [DataContract(Name = "dictionaryTranslation", Namespace = "")] public class DictionaryOverviewTranslationDisplay { /// /// Gets or sets the display name. /// [DataMember(Name = "displayName")] public string DisplayName { get; set; } /// /// Gets or sets a value indicating whether has translation. /// [DataMember(Name = "hasTranslation")] public bool HasTranslation { get; set; } } }