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