namespace DamageAssesment.Api.Questions.Models
{
    public class SurveyQuestions
    {
        public int CategoryId { get; set; }
        public string IconName { get; set; }
        public string IconLibrary { get; set; }
        public object CategoryNames { get; set; }
        public List<MultiLanguage> QuestionsText { get; set; }
    }
}