Files
ZelWiki/ZelWiki.Models/DataModels/WikiException.cs
2025-02-20 15:20:28 +08:00

13 lines
411 B
C#

namespace ZelWiki.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; }
}
}