U4-5683 Migrate Dictionary tree & editor to angular (#2159)
This commit is contained in:
committed by
Sebastiaan Janssen
parent
3520f2d1e4
commit
9c33f1b1c9
@@ -0,0 +1,29 @@
|
||||
namespace Umbraco.Web.Models.ContentEditing
|
||||
{
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
/// <summary>
|
||||
/// The dictionary translation save model
|
||||
/// </summary>
|
||||
[DataContract(Name = "dictionaryTranslation", Namespace = "")]
|
||||
public class DictionaryTranslationSave
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the iso code.
|
||||
/// </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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user