using System.Runtime.Serialization; namespace Umbraco.Cms.Core.Models.ContentEditing; /// /// The dictionary overview display. /// [DataContract(Name = "dictionary", Namespace = "")] public class DictionaryOverviewDisplay { /// /// Initializes a new instance of the class. /// public DictionaryOverviewDisplay() => Translations = new List(); /// /// Gets or sets the key. /// [DataMember(Name = "name")] public string? Name { get; set; } /// /// Gets or sets the id. /// [DataMember(Name = "id")] public int Id { get; set; } /// /// Gets or sets the level. /// [DataMember(Name = "level")] public int Level { get; set; } /// /// Gets or sets the translations. /// [DataMember(Name = "translations")] public List Translations { get; set; } }