20 lines
457 B
C#
20 lines
457 B
C#
using System.Runtime.Serialization;
|
|
using Umbraco.Cms.Core.Models.Entities;
|
|
|
|
namespace Umbraco.Cms.Core.Models;
|
|
|
|
public interface IDictionaryTranslation : IEntity, IRememberBeingDirty
|
|
{
|
|
/// <summary>
|
|
/// Gets the ISO code of the language.
|
|
/// </summary>
|
|
[DataMember]
|
|
string LanguageIsoCode { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the translated text.
|
|
/// </summary>
|
|
[DataMember]
|
|
string Value { get; set; }
|
|
}
|