32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class Subjects
|
|||
|
|
{
|
|||
|
|
public Subjects()
|
|||
|
|
{
|
|||
|
|
Categories = new HashSet<Categories>();
|
|||
|
|
ExamSections = new HashSet<ExamSections>();
|
|||
|
|
StudyNotes = new HashSet<StudyNotes>();
|
|||
|
|
SubjectLanguages = new HashSet<SubjectLanguages>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public int ClassId { get; set; }
|
|||
|
|
public byte[] Photo { 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 Classes Class { get; set; }
|
|||
|
|
public virtual ICollection<Categories> Categories { get; set; }
|
|||
|
|
public virtual ICollection<ExamSections> ExamSections { get; set; }
|
|||
|
|
public virtual ICollection<StudyNotes> StudyNotes { get; set; }
|
|||
|
|
public virtual ICollection<SubjectLanguages> SubjectLanguages { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|