22 lines
583 B
C#
22 lines
583 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Entities
|
|
{
|
|
[Table("ErrorLogs")]
|
|
public class ErrorLogs
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string? Message { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
public string? Application { get; set; }
|
|
public DateTime CreatedDate { get; set; }= DateTime.UtcNow;
|
|
}
|
|
}
|