2023-08-15 23:52:30 -04:00
|
|
|
|
namespace DamageAssesment.Api.Questions.Models
|
|
|
|
|
{
|
|
|
|
|
public class QuestionsTranslation
|
|
|
|
|
{
|
|
|
|
|
public string QuestionText { get; set; }
|
2023-09-13 01:28:24 -04:00
|
|
|
|
public string Language { get; set; } = "en";
|
2023-08-15 23:52:30 -04:00
|
|
|
|
}
|
2023-09-13 01:28:24 -04:00
|
|
|
|
public class MultiLanguage : BaseQuestion
|
2023-09-08 15:40:06 -04:00
|
|
|
|
{
|
2023-09-13 01:28:24 -04:00
|
|
|
|
public Dictionary<string,string> Text { get; set; }
|
2023-09-08 15:40:06 -04:00
|
|
|
|
}
|
2023-08-15 23:52:30 -04:00
|
|
|
|
}
|