practicekea_backend/microservices/_layers/domain/ModelsOld/QuestionLanguges.cs

21 lines
632 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 QuestionLanguges
{
public int Id { get; set; }
public int? LanguageId { get; set; }
public int? QuestionId { get; set; }
public string Question { get; set; }
public string Description { get; set; }
public string Hint { get; set; }
public string AnswerExplanation { get; set; }
public bool? IsActive { get; set; }
public virtual Languages Language { get; set; }
public virtual Questions QuestionNavigation { get; set; }
}
}