Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions StackExchange.Exceptional.Sqlite/ErrorMapSqlite.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
using System;

namespace StackExchange.Exceptional.Sqlite
{
internal class ErrorMapSqlite
{
public string ApplicationName { get; set; }
public string Category { get; set; }
public DateTime CreationDate { get; set; }
public string Detail { get; set; }
public DateTime? DeletionDate { get; set; }
public int? DuplicateCount { get; set; }
public int? ErrorHash { get; set; }
public string FullJson { get; set; }
public string GUID { get; set; }
public string FullUrl { get; set; }
public string HTTPMethod { get; set; }
public string Host { get; set; }
public long Id { get; set; }
public bool IsDuplicate { get; set; }
public string IPAddress { get; set; }
public bool IsProtected { get; set; }
public string Source { get; set; }
public DateTime? LastLogDate { get; set; }
public string MachineName { get; set; }
public string Message { get; set; }
public int? StatusCode { get; set; }
public string Type { get; set; }
public string UrlPath { get; set; }
}
}
Loading