28 lines
949 B
C#
28 lines
949 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class QuestionBugs
|
|
{
|
|
public int Id { get; set; }
|
|
public int QuestionId { get; set; }
|
|
public string Source { get; set; }
|
|
public string BugTitle { get; set; }
|
|
public string BugDescription { get; set; }
|
|
public bool? IsValid { get; set; }
|
|
public string TicketId { get; set; }
|
|
public string BugId { get; set; }
|
|
public string Status { 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 Users CreatedByNavigation { get; set; }
|
|
public virtual Questions Question { get; set; }
|
|
public virtual Users UpdatedByNavigation { get; set; }
|
|
}
|
|
}
|