19 lines
513 B
C#
19 lines
513 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Apimanager_backend.Models
|
|
{
|
|
[Table("Logs")]
|
|
public class Log
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public string Message { get; set; }
|
|
public string Exception { get; set; }
|
|
public string MessageTemplate { get; set; }
|
|
public string Properties { get; set; }
|
|
public string LogLevel { get; set; }
|
|
|
|
}
|
|
}
|