9 lines
206 B
C#
9 lines
206 B
C#
namespace DamageAssesment.Api.Questions.Models
|
|
{
|
|
public class QuestionsTranslation
|
|
{
|
|
public string QuestionText { get; set; }
|
|
public string Language { get; set; } = "En";
|
|
}
|
|
}
|