Table of Contents

Class SurveyTranslationModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

The model (dto) for a translation item

public class SurveyTranslationModel
Inheritance
SurveyTranslationModel
Inherited Members

Properties

Name

The name of the item

[JsonProperty("Name", Required = Required.Always)]
[Required]
[StringLength(50, MinimumLength = 1)]
public string Name { get; set; }

Property Value

string

Text

The translated text

[JsonProperty("Text", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(512)]
public string Text { get; set; }

Property Value

string