2011-06-08 06:15:35 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Web;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class PendingProcessingModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Files { get; set; }
|
2012-02-10 07:11:56 +00:00
|
|
|
|
public string Created { get; set; }
|
2011-06-08 06:15:35 +00:00
|
|
|
|
public string Path { get; set; }
|
2012-02-10 07:11:56 +00:00
|
|
|
|
public string Actions { get; set; }
|
|
|
|
|
public string Details { get; set; }
|
2011-06-08 06:15:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|