12 lines
349 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.Questions.Models
{
public class SurveyQuestions
{
public int CategoryId { get; set; }
2023-09-08 15:40:06 -04:00
public string IconName { get; set; }
public string IconLibrary { get; set; }
public object CategoryNames { get; set; }
public List<MultiLanguage> QuestionsText { get; set; }
2023-08-15 23:52:30 -04:00
}
}