You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
535 B

4 years ago
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.AppBoxEntity
{
public class Log : IKeyID
{
[Key]
public int ID { get; set; }
[StringLength(20)]
public string Level { get; set; }
[StringLength(200)]
public string Logger { get; set; }
[StringLength(4000)]
public string Message { get; set; }
[StringLength(4000)]
public string Exception { get; set; }
public DateTime LogTime { get; set; }
}
}