9 lines
213 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.SurveyResponses.Models
{
public class QuestionsTranslation
{
public string QuestionText { get; set; }
public string Language { get; set; } = "En";
}
}