added repository interfaces for all models
added Completion model
This commit is contained in:
parent
468ddba909
commit
18840fc224
9 changed files with 51 additions and 6 deletions
|
|
@ -2,11 +2,10 @@ namespace SurveyLib.Core.Models;
|
|||
|
||||
public class Answer
|
||||
{
|
||||
public int TryId { get; set; }
|
||||
public int SurveyId { get; set; }
|
||||
public int CompletionId { get; set; }
|
||||
public int QuestionId { get; set; }
|
||||
public string AnswerText { get; set; }
|
||||
|
||||
public Survey Survey { get; set; }
|
||||
public Completion Completion { get; set; }
|
||||
public QuestionBase Question { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue