kept all properties, etc.. internal just so that they can be found so we don't have to register them. Updates unit test to ensure the plugin manager is init'd properly with the 'false' override. Ensures that the base db test also initializes the plugin manager properly.
29 lines
825 B
C#
29 lines
825 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets the Parent Id of the Dictionary Item
|
|
/// </summary>
|
|
[DataMember]
|
|
Guid ParentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Key for the Dictionary Item
|
|
/// </summary>
|
|
[DataMember]
|
|
string ItemKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a list of translations for the Dictionary Item
|
|
/// </summary>
|
|
[DataMember]
|
|
IEnumerable<IDictionaryTranslation> Translations { get; set; }
|
|
}
|
|
} |