Skip to main content
Version: v13.x - Umbraco 13

TranslationProperty

A Translation property is a representation of a single property within an Umbraco content node, it contains all the information required to translate a property.

Properties may be simple or complex and contain one or more translation values

public class TranslationProperty
{
public int Id { get; set; }
public Guid NodeKey { get; set; }
public string Alias { get; set; }

public string Group { get; set; }
public int SortOrder { get; set; }

public TranslationValue Source { get; set; }
public TranslationValue Target { get; set; }
}