using System.Runtime.Serialization; namespace Umbraco.Cms.Core.Models.ContentEditing; /// /// The macro parameter display. /// [DataContract(Name = "parameter", Namespace = "")] public class MacroParameterDisplay { /// /// Gets or sets the key. /// [DataMember(Name = "key")] public string Key { get; set; } = null!; /// /// Gets or sets the label. /// [DataMember(Name = "label")] public string? Label { get; set; } /// /// Gets or sets the editor. /// [DataMember(Name = "editor")] public string Editor { get; set; } = null!; /// /// Gets or sets the id. /// [DataMember(Name = "id")] public int Id { get; set; } }