mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
54e7092e2d
Added view under system to see which folders have not been processed in dropDir.
15 lines
344 B
C#
15 lines
344 B
C#
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; }
|
|
}
|
|
} |