using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Runtime.Serialization; using Umbraco.Cms.Core.Models.Validation; namespace Umbraco.Cms.Core.Models.ContentEditing; [DataContract(Name = "entity", Namespace = "")] public class EntityBasic { public EntityBasic() { AdditionalData = new Dictionary(); Alias = string.Empty; Path = string.Empty; } [DataMember(Name = "name", IsRequired = true)] [RequiredForPersistence(AllowEmptyStrings = false, ErrorMessage = "Required")] public string? Name { get; set; } [DataMember(Name = "id", IsRequired = true)] [Required] public object? Id { get; set; } [DataMember(Name = "udi")] [ReadOnly(true)] public Udi? Udi { get; set; } [DataMember(Name = "icon")] public string? Icon { get; set; } [DataMember(Name = "trashed")] [ReadOnly(true)] public bool Trashed { get; set; } /// /// This is the unique Id stored in the database - but could also be the unique id for a custom membership provider /// [DataMember(Name = "key")] public Guid Key { get; set; } [DataMember(Name = "parentId", IsRequired = true)] [Required] public int ParentId { get; set; } /// /// This will only be populated for some entities like macros /// /// /// It is possible to override this to specify different validation attributes if required /// [DataMember(Name = "alias")] public virtual string Alias { get; set; } /// /// The path of the entity /// [DataMember(Name = "path")] public string Path { get; set; } /// /// A collection of extra data that is available for this specific entity/entity type /// [DataMember(Name = "metaData")] [ReadOnly(true)] public IDictionary AdditionalData { get; private set; } }