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.
21 lines
560 B
C#
21 lines
560 B
C#
using System.Runtime.Serialization;
|
|
using Umbraco.Core.Models.EntityBase;
|
|
using Umbraco.Core.Persistence.Mappers;
|
|
|
|
namespace Umbraco.Core.Models
|
|
{
|
|
public interface IDictionaryTranslation : IEntity
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="Language"/> for the translation
|
|
/// </summary>
|
|
[DataMember]
|
|
ILanguage Language { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the translated text
|
|
/// </summary>
|
|
[DataMember]
|
|
string Value { get; set; }
|
|
}
|
|
} |