added more question variants
This commit is contained in:
parent
8959c3d984
commit
cce3ea2645
6 changed files with 34 additions and 1 deletions
10
SurveyLib.Core/Models/AnswerVariant.cs
Normal file
10
SurveyLib.Core/Models/AnswerVariant.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace SurveyLib.Core.Models;
|
||||
|
||||
public class AnswerVariant
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int QuestionId { get; set; }
|
||||
public string Text { get; set; }
|
||||
|
||||
public QuestionBase Question { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue