2018-06-13 15:17:31 +02:00
|
|
|
|
using System.Runtime.Serialization;
|
2018-06-13 20:19:18 +02:00
|
|
|
|
|
2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Core.Models.ContentEditing
|
2018-06-13 15:17:31 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <inheritdoc />
|
2018-06-13 20:19:18 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The dictionary translation display model
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataContract(Name = "dictionaryTranslation", Namespace = "")]
|
|
|
|
|
|
public class DictionaryTranslationDisplay : DictionaryTranslationSave
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the display name.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataMember(Name = "displayName")]
|
2022-01-21 11:43:58 +01:00
|
|
|
|
public string? DisplayName { get; set; }
|
2018-06-13 20:19:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|