Log Grid added, using server side filtering, sorting and paging. Using DynamicQueryable.

This commit is contained in:
Mark McDowall 2012-02-09 09:41:51 -08:00
parent ca5888160d
commit 9c24b5989b
16 changed files with 4886 additions and 64 deletions

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class LogModel
{
public string Message { get; set; }
public string Time { get; set; }
public string Source { get; set; }
public string Method { get; set; }
public string Exception { get; set; }
public string ExceptionType { get; set; }
public string Level { get; set; }
public string Details { get; set; }
}
}