30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class ErrorLogs
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime? ErrorDate { get; set; }
|
|
public string TicketNo { get; set; }
|
|
public string Environment { get; set; }
|
|
public string ErrorPage { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
public string ErrorInnerMessage { get; set; }
|
|
public string ErrorCallStack { get; set; }
|
|
public string UserDomain { get; set; }
|
|
public string Language { get; set; }
|
|
public string TargetSite { get; set; }
|
|
public string TheClass { get; set; }
|
|
public string UserAgent { get; set; }
|
|
public string TypeLog { get; set; }
|
|
public int? UserId { 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; }
|
|
}
|
|
}
|