practicekea_backend/microservices/_layers/domain/Models/QuestionLanguges.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 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 Direction { get; set; }
public string AnswerExplanation { 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 Languages Language { get; set; }
public virtual Questions QuestionNavigation { get; set; }
}
}