13 lines
298 B
C#
13 lines
298 B
C#
namespace DamageAssesment.Api.Questions.Models
|
|
{
|
|
public class QuestionsTranslation
|
|
{
|
|
public string QuestionText { get; set; }
|
|
public string Language { get; set; } = "En";
|
|
}
|
|
public class MultiLanguage
|
|
{
|
|
public object questionText { get; set; }
|
|
}
|
|
}
|