24 lines
773 B
C#
24 lines
773 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class ExamPracticeLanguages
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public int? LanguageId { get; set; }
|
|||
|
|
public int ExamPracticeId { get; set; }
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string Description { get; set; }
|
|||
|
|
public string Instruction { 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 ExamPractices ExamPractice { get; set; }
|
|||
|
|
public virtual Languages Language { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|