using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; using Umbraco.Core.Models.Validation; namespace Umbraco.Web.Models.ContentEditing { [DataContract(Name = "entity", Namespace = "")] public class EntityBasic { public EntityBasic() { AdditionalData = new Dictionary(); } [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 = "icon")] public string Icon { 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 /// [DataMember(Name = "alias")] public 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")] public IDictionary AdditionalData { get; private set; } } }