practicekea_backend/microservices/_layers/domain/Models/ExamAttemptsAnswer.cs

25 lines
820 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
using System;
using System.Collections.Generic;
namespace OnlineAssessment.Domain.Models
{
public partial class ExamAttemptsAnswer
{
public int Id { get; set; }
public int ExamAttemptId { get; set; }
public int QuestionId { get; set; }
public DateTime DateOfAnswer { get; set; }
public int AnswerDurationSeconds { get; set; }
public string StudentAnswer { get; set; }
public string Doubt { get; set; }
public bool? IsCorrect { get; set; }
public bool? IsVisited { get; set; }
public bool? IsReviewed { get; set; }
public bool? IsActive { get; set; }
public double? Score { get; set; }
public virtual ExamAttempts ExamAttempt { get; set; }
public virtual Questions Question { get; set; }
}
}