27 lines
840 B
C#
27 lines
840 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class QuestionOptions
|
|||
|
|
{
|
|||
|
|
public QuestionOptions()
|
|||
|
|
{
|
|||
|
|
QuestionOptionLanguages = new HashSet<QuestionOptionLanguages>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public int QuestionId { get; set; }
|
|||
|
|
public byte[] OptionImage { get; set; }
|
|||
|
|
public bool? IsCorrect { get; set; }
|
|||
|
|
public DateTime? CreatedOn { get; set; }
|
|||
|
|
public int? CreatedBy { get; set; }
|
|||
|
|
public DateTime? UpdatedOn { get; set; }
|
|||
|
|
public int? UpdatedBy { get; set; }
|
|||
|
|
public bool? IsActive { get; set; }
|
|||
|
|
|
|||
|
|
public virtual Questions Question { get; set; }
|
|||
|
|
public virtual ICollection<QuestionOptionLanguages> QuestionOptionLanguages { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|