forked from MDCPS/DamageAssessment_Backend
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			324 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			324 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace DamageAssesment.Api.Questions.Models
 | 
						|
{
 | 
						|
    public class QuestionsTranslation
 | 
						|
    {
 | 
						|
        public string QuestionText { get; set; }
 | 
						|
        public string Language { get; set; } = "en";
 | 
						|
    }
 | 
						|
    public class MultiLanguage : BaseQuestion
 | 
						|
    {
 | 
						|
        public Dictionary<string,string> Text { get; set; }
 | 
						|
    }
 | 
						|
}
 |