fixed survey put issue, amd added export excel in responses

This commit is contained in:
uppuv
2023-10-31 16:19:24 -04:00
parent ae6b306290
commit fc166e65c9
16 changed files with 363 additions and 47 deletions

View File

@ -0,0 +1,10 @@
namespace DamageAssesment.Api.Responses.Models
{
public class QuestionCategory
{
public int Id { get; set; }
public string IconName { get; set; }
public string IconLibrary { get; set; }
public object Titles { get; set; }
}
}