12 lines
No EOL
300 B
C#
12 lines
No EOL
300 B
C#
namespace SurveyLib.Core.Models;
|
|
|
|
public class Answer
|
|
{
|
|
public int TryId { get; set; }
|
|
public int SurveyId { get; set; }
|
|
public int QuestionId { get; set; }
|
|
public string AnswerText { get; set; }
|
|
|
|
public Survey Survey { get; set; }
|
|
public QuestionBase Question { get; set; }
|
|
} |