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,23 @@
|
||||
namespace Umbraco.Web.Models.ContentEditing
|
||||
{
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
/// <summary>
|
||||
/// The dictionary translation overview display.
|
||||
/// </summary>
|
||||
[DataContract(Name = "dictionaryTranslation", Namespace = "")]
|
||||
public class DictionaryOverviewTranslationDisplay
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the display name.
|
||||
/// </summary>
|
||||
[DataMember(Name = "displayName")]
|
||||
public string DisplayName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether has translation.
|
||||
/// </summary>
|
||||
[DataMember(Name = "hasTranslation")]
|
||||
public bool HasTranslation { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user