practicekea_backend/microservices/_layers/domain/ModelsOld/ErrorLogs.cs

26 lines
881 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 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 bool? IsActive { get; set; }
}
}