2018-06-13 15:17:31 +02:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
2018-06-13 20:19:18 +02:00
|
|
|
namespace Umbraco.Web.Models.ContentEditing
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The dictionary translation save model
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataContract(Name = "dictionaryTranslation", Namespace = "")]
|
|
|
|
|
public class DictionaryTranslationSave
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-01-26 10:52:19 -05:00
|
|
|
/// Gets or sets the ISO code.
|
2018-06-13 20:19:18 +02:00
|
|
|
/// </summary>
|
|
|
|
|
[DataMember(Name = "isoCode")]
|
|
|
|
|
public string IsoCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the translation.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataMember(Name = "translation")]
|
|
|
|
|
public string Translation { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the language id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataMember(Name = "languageId")]
|
|
|
|
|
public int LanguageId { get; set; }
|
|
|
|
|
}
|
2018-06-13 15:17:31 +02:00
|
|
|
}
|