11 lines
274 B
C#
11 lines
274 B
C#
using TightWiki.Models.DataModels;
|
|
|
|
namespace TightWiki.Models.ViewModels.Admin
|
|
{
|
|
public class ExceptionsViewModel : ViewModelBase
|
|
{
|
|
public List<WikiException> Exceptions { get; set; } = new();
|
|
public int PaginationPageCount { get; set; }
|
|
}
|
|
}
|