using System.Runtime.Serialization; namespace Umbraco.Web.Models.ContentEditing { /// /// The dictionary translation save model /// [DataContract(Name = "dictionaryTranslation", Namespace = "")] public class DictionaryTranslationSave { /// /// Gets or sets the ISO code. /// [DataMember(Name = "isoCode")] public string IsoCode { get; set; } /// /// Gets or sets the translation. /// [DataMember(Name = "translation")] public string Translation { get; set; } /// /// Gets or sets the language id. /// [DataMember(Name = "languageId")] public int LanguageId { get; set; } } }