enabled seed data and changed survey Response project name

This commit is contained in:
uppuv
2023-10-04 15:03:59 -04:00
parent 044876b23b
commit 54d6fab64f
55 changed files with 92 additions and 118 deletions

View File

@ -0,0 +1,20 @@
namespace DamageAssesment.Api.SurveyResponses.Models
{
public class AttachmentInfo
{
public int ResponseId { get; set; }
public List<AnswerInfo> Answers { get; set; }
}
public class AnswerInfo
{
public int AnswerId { get; set; }
public List<FileModel> postedFiles { get; set; }
}
public class FileModel
{
public int? AttachmentId { get; set; }
public string? FileName { get; set; }
public string? FileContent { get; set; }
public string? FileExtension { get; set; }
}
}