using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Umbraco.Web.Models.ContentEditing { /// /// Dictionary Save model /// [DataContract(Name = "dictionary", Namespace = "")] public class DictionarySave : EntityBasic { /// /// Initializes a new instance of the class. /// public DictionarySave() { this.Translations = new List(); } /// /// Gets or sets a value indicating whether name is dirty. /// [DataMember(Name = "nameIsDirty")] public bool NameIsDirty { get; set; } /// /// Gets the translations. /// [DataMember(Name = "translations")] public List Translations { get; private set; } /// /// Gets or sets the parent id. /// [DataMember(Name = "parentId")] public new Guid ParentId { get; set; } } }