Select Git revision
GitVersion.yml
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Log.cs 877 B
using System;
using System.Collections.Generic;
// Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
// If you have enabled NRTs for your project, then un-comment the following line:
// #nullable disable
namespace Coscine.Database.DataModel
{
public partial class Log
{
public Guid Id { get; set; }
public DateTime? ServerTimestamp { get; set; }
public DateTime? ClientTimestamp { get; set; }
public string LogLevel { get; set; }
public string Message { get; set; }
public string Stacktrace { get; set; }
public Guid? UserId { get; set; }
public string Uri { get; set; }
public string Server { get; set; }
public Guid? CorrolationId { get; set; }
public string Status { get; set; }
public string Source { get; set; }
}
}