Added new helper to find the best file size format given a long with file size in bytes.

Added view under system to see which folders have not been processed in dropDir.
This commit is contained in:
Mark McDowall 2011-06-07 23:15:35 -07:00
parent cea511a460
commit 54e7092e2d
7 changed files with 214 additions and 2 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class PendingProcessingModel
{
public string Name { get; set; }
public string Files { get; set; }
public DateTime Created { get; set; }
public string Path { get; set; }
}
}