change answer logic to support multiple answer questions

This commit is contained in:
Вячеслав 2025-06-08 14:50:24 +05:00
parent 88f98707fa
commit facbd1b56b
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,8 @@ namespace SurveyLib.Core.Models;
public class Answer
{
public int Id { get; set; }
public int CompletionId { get; set; }
public int QuestionId { get; set; }
public string AnswerText { get; set; }