12 lines
349 B
C#
12 lines
349 B
C#
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; }
|
|
}
|
|
}
|