Class SurveyTranslationV1Model
The model (dto) for a translation item
public class SurveyTranslationV1Model
- Inheritance
-
SurveyTranslationV1Model
- 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
Text
The translated text
[JsonProperty("Text", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(512)]
public string Text { get; set; }