10 lines
No EOL
221 B
C#
10 lines
No EOL
221 B
C#
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; }
|
|
} |