using System; using System.Collections.Generic; using System.Runtime.Serialization; using Umbraco.Core.Models.EntityBase; using Umbraco.Core.Persistence.Mappers; namespace Umbraco.Core.Models { public interface IDictionaryItem : IAggregateRoot { /// /// Gets or Sets the Parent Id of the Dictionary Item /// [DataMember] Guid ParentId { get; set; } /// /// Gets or sets the Key for the Dictionary Item /// [DataMember] string ItemKey { get; set; } /// /// Gets or sets a list of translations for the Dictionary Item /// [DataMember] IEnumerable Translations { get; set; } } }