11 lines
No EOL
277 B
C#
11 lines
No EOL
277 B
C#
namespace SurveyLib.Core.Models;
|
|
|
|
public class Answer
|
|
{
|
|
public int CompletionId { get; set; }
|
|
public int QuestionId { get; set; }
|
|
public string AnswerText { get; set; }
|
|
|
|
public Completion Completion { get; set; }
|
|
public QuestionBase Question { get; set; }
|
|
} |