Files
ZelWiki/TightWiki.Models/DataModels/WikiException.cs
2025-01-22 23:31:03 +08:00

13 lines
413 B
C#

namespace TightWiki.Models.DataModels
{
public class WikiException
{
public int Id { get; set; }
public string Text { get; set; } = string.Empty;
public string ExceptionText { get; set; } = string.Empty;
public string StackTrace { get; set; } = string.Empty;
public DateTime CreatedDate { get; set; }
public int PaginationPageCount { get; set; }
}
}